Lines Matching defs:thread

90 	with a pointer to the window structure are provided to the background thread
100 /*! A background thread runs to gather data to use in the interface for creating
101 a new user. This structure is passed to the background thread.
111 /*! A background thread runs to authenticate the user with the remote server
112 system. This structure provides the thread with the necessary data to
386 HDDEBUG("quit requested while worker thread is operating -- will "
387 "try again once the worker thread has completed");
452 UserLoginWindow::_SetWorkerThreadLocked(thread_id thread)
455 _SetWorkerThread(thread);
460 UserLoginWindow::_SetWorkerThread(thread_id thread)
462 if (thread >= 0) {
463 fWorkerThread = thread;
496 // this will be owned and deleted by the thread
500 thread_id thread = spawn_thread(&_AuthenticateThreadEntry,
502 if (thread >= 0)
503 _SetWorkerThread(thread);
726 thread_id thread = spawn_thread(&_CreateAccountSetupThreadEntry,
728 if (thread >= 0)
729 _SetWorkerThreadLocked(thread);
731 debugger("unable to start a thread to gather data for creating an "
797 "data from the server in background thread");
1074 thread_id thread = spawn_thread(&_CreateAccountThreadEntry,
1076 if (thread >= 0)
1077 _SetWorkerThread(thread);
1287 /*! This is the entry-point for the thread that will process the data to create
1304 /*! This method runs in a background thread run and makes the necessary calls
1423 /*! Handles the main UI-thread processing for the situation where there was an
1426 background thread creating the account.