HomeSort by relevance Sort by last modified time
    Searched refs:done (Results 1 - 25 of 1367) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/setup/
daemon_controller.h 124 // Download and install the host component. |done| is invoked on the
126 virtual void InstallHost(const CompletionCallback& done) = 0;
129 // downloaded and installed. |done| is invoked on the calling thread when
134 const CompletionCallback& done) = 0;
139 // values, because implementations of this method cannot change them. |done|
143 const CompletionCallback& done) = 0;
145 // Stops the daemon process. |done| is invoked on the calling thread when
147 virtual void Stop(const CompletionCallback& done) = 0;
173 // Queries current host configuration. The |done| is called
176 void GetConfig(const GetConfigCallback& done);
    [all...]
daemon_controller.cc 40 void DaemonController::GetConfig(const GetConfigCallback& done) {
44 &DaemonController::InvokeConfigCallbackAndScheduleNext, this, done);
50 void DaemonController::InstallHost(const CompletionCallback& done) {
54 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
63 const CompletionCallback& done) {
67 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
75 const CompletionCallback& done) {
79 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
86 void DaemonController::Stop(const CompletionCallback& done) {
90 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
99 base::Closure done = base::Bind(&DaemonController::ScheduleNext, this); local
    [all...]
daemon_controller_delegate_linux.h 22 const DaemonController::CompletionCallback& done) OVERRIDE;
26 const DaemonController::CompletionCallback& done) OVERRIDE;
29 const DaemonController::CompletionCallback& done) OVERRIDE;
30 virtual void Stop(const DaemonController::CompletionCallback& done) OVERRIDE;
daemon_installer_win.h 27 // returns NULL and passed the error code to |done|.
29 CompletionCallback done);
32 DaemonInstallerWin(const CompletionCallback& done);
35 void Done(HRESULT result);
  /external/openssl/crypto/
o_init.c 68 static int done = 0; local
69 if (done)
71 done = 1;
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
vpx_once.h 23 static int done; local
30 if(done)
56 if (!done)
59 done = 1;
65 * protected by checking if(done) above.
81 static int done; local
84 if(done)
92 if (!done)
95 done = 1;
120 static int done; local
    [all...]
  /external/libvpx/libvpx/vpx_ports/
vpx_once.h 23 static int done; local
30 if(done)
56 if (!done)
59 done = 1;
65 * protected by checking if(done) above.
93 static int done; local
95 if(!done)
98 done = 1;
  /external/chromium_org/base/threading/
thread_local_unittest.cc 19 ThreadLocalTesterBase(TLPType* tlp, base::WaitableEvent* done)
21 done_(done) {
32 SetThreadLocal(TLPType* tlp, base::WaitableEvent* done)
33 : ThreadLocalTesterBase(tlp, done),
52 GetThreadLocal(TLPType* tlp, base::WaitableEvent* done)
53 : ThreadLocalTesterBase(tlp, done),
86 base::WaitableEvent done(true, false);
88 GetThreadLocal getter(&tlp, &done);
93 done.Reset();
95 done.Wait()
    [all...]
  /art/runtime/arch/mips/
memcmp16_mips.S 26 beqz $a2,done /* 0 length string */
27 beq $a0,$a1,done /* strings are identical */
33 bne $t0,$t1,done
38 done: label
  /external/chromium_org/content/browser/fileapi/
file_system_operation_runner_unittest.cc 21 void GetStatus(bool* done,
24 ASSERT_FALSE(*done);
25 *done = true;
77 bool done = false; local
82 base::Bind(&GetStatus, &done, &status));
83 ASSERT_FALSE(done);
85 ASSERT_TRUE(done);
90 bool done = false; local
95 base::Bind(&GetStatus, &done, &status));
97 ASSERT_FALSE(done);
105 bool done = false; local
130 bool done = false; local
156 bool done = true; \/\/ The operation is not running. local
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkOnce.h 46 inline void SkOnce(bool* done, Lock* lock, void (*f)());
49 inline void SkOnce(bool* done, Lock* lock, void (*f)(Arg), Arg arg);
86 static void sk_once_slow(bool* done, Lock* lock, void (*f)(Arg), Arg arg) {
88 if (!*done) {
91 // done before here---in particular, those done by calling f(arg)---are observable
92 // before the writes after the line, *done = true.
95 // to and including f(arg), then check in *done=true as a subsequent change".
98 // observable whenever we observe *done == true.
99 sk_release_store(done, true)
    [all...]
  /external/chromium_org/chrome/browser/ui/tab_contents/
tab_contents_iterator.h 23 // for (TabContentsIterator iterator; !iterator.done(); iterator.Next()) {
34 bool done() const { return cur_ == NULL; } function in class:TabContentsIterator
37 // WebContents. Valid as long as !done().
39 if (!browser_iterator_.done())
44 // Returns the current WebContents, valid as long as !done().
  /external/chromium_org/chrome/test/base/
testing_io_thread_state.h 28 void Initialize(const base::Closure& done);
29 void Shutdown(const base::Closure& done);
  /external/chromium_org/remoting/protocol/
host_video_dispatcher.cc 29 const base::Closure& done) {
30 writer_.Write(SerializeAndFrameMessage(*packet), done);
audio_stub.h 22 const base::Closure& done) = 0;
video_stub.h 20 const base::Closure& done) = 0;
  /external/chromium_org/media/audio/
scoped_task_runner_observer.cc 24 base::WaitableEvent* done) {
25 // Note: |done| may be NULL.
44 if (done)
45 done->Signal();
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_once.c 49 (PTW32_INTERLOCKED_LONG)PTW32_INTERLOCKED_EXCHANGE_ADD_LONG((PTW32_INTERLOCKED_LONGPTR)&once_control->done,
56 if (!once_control->done)
71 once_control->done = PTW32_TRUE;
  /external/clang/test/PCH/
stmts.h 37 goto done;
52 done:
81 location = &&done;
89 done:
  /external/expat/examples/
elements.c 48 int done; local
54 done = len < sizeof(buf);
55 if (XML_Parse(parser, buf, len, done) == XML_STATUS_ERROR) {
62 } while (!done);
  /external/iproute2/tc/
p_ip.c 40 goto done;
46 goto done;
56 goto done;
62 goto done;
68 goto done;
75 goto done;
82 goto done;
89 goto done;
95 goto done;
101 goto done;
    [all...]
  /external/libyuv/
setup_env.bat 4 if "%SETUP_ENV_LIBYUV_TOOLS%"=="done" goto :EOF
5 set SETUP_ENV_LIBYUV_TOOLS=done
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcscspn.c 50 goto done;
56 done:
wcsspn.c 54 goto done;
58 done:
  /development/ndk/platforms/android-3/include/linux/
completion.h 18 unsigned int done; member in struct:completion
30 #define INIT_COMPLETION(x) ((x).done = 0)

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011>>