Searched refs:done (Results 1 - 25 of 1555) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/ppc32/
H A Dbug129390-ppc32.stdout.exp2 vmxcache: done
/external/valgrind/main/none/tests/
H A Dpth_mutexspeed.stdout.exp2 done 100000 lock--unlocks
/external/chromium_org/v8/test/mjsunit/es6/regress/
H A Dregress-2681.js43 assertEquals({ value: 1, done: false }, o.next());
47 assertEquals({ value: 2, done: false }, o.next());
48 assertEquals({ value: undefined, done: true }, o.next());
/external/openssl/crypto/
H A Do_init.c68 static int done = 0; local
69 if (done)
71 done = 1;
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
H A Dvpx_once.h23 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/
H A Dvpx_once.h23 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/remoting/host/setup/
H A Ddaemon_controller.cc40 void DaemonController::GetConfig(const GetConfigCallback& done) { argument
44 &DaemonController::InvokeConfigCallbackAndScheduleNext, this, done);
50 void DaemonController::InstallHost(const CompletionCallback& done) { argument
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) { argument
90 &DaemonController::InvokeCompletionCallbackAndScheduleNext, this, done);
60 SetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const CompletionCallback& done) argument
74 UpdateConfig(scoped_ptr<base::DictionaryValue> config, const CompletionCallback& done) argument
99 base::Closure done = base::Bind(&DaemonController::ScheduleNext, this); local
105 GetVersion(const GetVersionCallback& done) argument
115 GetUsageStatsConsent( const GetUsageStatsConsentCallback& done) argument
135 DoGetConfig(const GetConfigCallback& done) argument
143 DoInstallHost(const CompletionCallback& done) argument
149 DoSetConfigAndStart( scoped_ptr<base::DictionaryValue> config, bool consent, const CompletionCallback& done) argument
158 DoUpdateConfig( scoped_ptr<base::DictionaryValue> config, const CompletionCallback& done) argument
166 DoStop(const CompletionCallback& done) argument
172 DoSetWindow(void* window_handle, const base::Closure& done) argument
180 DoGetVersion(const GetVersionCallback& done) argument
187 DoGetUsageStatsConsent( const GetUsageStatsConsentCallback& done) argument
196 InvokeCompletionCallbackAndScheduleNext( const CompletionCallback& done, AsyncResult result) argument
211 InvokeConfigCallbackAndScheduleNext( const GetConfigCallback& done, scoped_ptr<base::DictionaryValue> config) argument
220 InvokeConsentCallbackAndScheduleNext( const GetUsageStatsConsentCallback& done, const UsageStatsConsent& consent) argument
229 InvokeVersionCallbackAndScheduleNext( const GetVersionCallback& done, const std::string& version) argument
[all...]
H A Ddaemon_controller.h124 // 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...]
/external/chromium_org/base/threading/
H A Dthread_local_unittest.cc19 ThreadLocalTesterBase(TLPType* tlp, base::WaitableEvent* done) argument
21 done_(done) {
32 SetThreadLocal(TLPType* tlp, base::WaitableEvent* done) argument
33 : ThreadLocalTesterBase(tlp, done),
52 GetThreadLocal(TLPType* tlp, base::WaitableEvent* done) argument
53 : ThreadLocalTesterBase(tlp, done),
86 base::WaitableEvent done(true, false);
88 GetThreadLocal getter(&tlp, &done);
93 done.Reset();
95 done
[all...]
/external/chromium_org/content/test/data/fileapi/
H A Drequest_test.js8 done();
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
H A Dmain.c21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
H A Dmain.c21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
H A Dmain.c21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
H A Dmain.c21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
H A Dmain.c21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
H A Dmain.c21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
/external/chromium_org/content/browser/fileapi/
H A Dfile_system_operation_runner_unittest.cc21 void GetStatus(bool* done, argument
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/
H A DSkOnce.h46 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) { argument
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, tru
106 SkOnce(bool* done, Lock* lock, void (*f)(Arg), Arg arg) argument
140 SkOnce(bool* done, Lock* lock, void (*func)()) argument
[all...]
/external/skia/include/core/
H A DSkOnce.h46 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) { argument
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, tru
106 SkOnce(bool* done, Lock* lock, void (*f)(Arg), Arg arg) argument
140 SkOnce(bool* done, Lock* lock, void (*func)()) argument
[all...]
/external/chromium_org/chrome/test/base/
H A Dtesting_io_thread_state.h28 void Initialize(const base::Closure& done);
29 void Shutdown(const base::Closure& done);
/external/chromium_org/remoting/protocol/
H A Dhost_video_dispatcher.cc29 const base::Closure& done) {
30 writer_.Write(SerializeAndFrameMessage(*packet), done);
28 ProcessVideoPacket(scoped_ptr<VideoPacket> packet, const base::Closure& done) argument
/external/valgrind/main/drd/tests/
H A Dtc08_hbl2.stdout.exp3 done, x = 10
/external/valgrind/main/helgrind/tests/
H A Dtc08_hbl2.stdout.exp3 done, x = 10
/external/chromium_org/v8/test/mjsunit/es6/
H A Dcollection-iterator.js32 assertEquals({value: 1, done: false}, iter.next());
33 assertEquals({value: 2, done: false}, iter.next());
34 assertEquals({value: 3, done: false}, iter.next());
35 assertEquals({value: undefined, done: true}, iter.next());
36 assertEquals({value: undefined, done: true}, iter.next());
52 assertEquals({value: [1, 1], done: false}, iter.next());
53 assertEquals({value: [2, 2], done: false}, iter.next());
54 assertEquals({value: [3, 3], done: false}, iter.next());
55 assertEquals({value: undefined, done: true}, iter.next());
56 assertEquals({value: undefined, done
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dsharedexclusivelock_unittest.cc34 bool* done)
38 done_(done) {
55 ReadTask(SharedExclusiveLock* shared_exclusive_lock, int* value, bool* done) argument
56 : SharedExclusiveTask(shared_exclusive_lock, value, done) {
88 WriteTask(SharedExclusiveLock* shared_exclusive_lock, int* value, bool* done) argument
89 : SharedExclusiveTask(shared_exclusive_lock, value, done) {
162 bool done; local
163 WriteTask writer(shared_exclusive_lock_.get(), &value_, &done);
169 done = false;
175 EXPECT_TRUE_WAIT(done, kProcessTimeoutInM
32 SharedExclusiveTask(SharedExclusiveLock* shared_exclusive_lock, int* value, bool* done) argument
182 bool done; local
201 bool done; local
[all...]

Completed in 344 milliseconds

1234567891011>>