Searched defs:done (Results 126 - 150 of 631) sorted by relevance

1234567891011>>

/external/skia/src/doc/
H A DSkDocument_PDF.cpp89 SkDocument* SkDocument::CreatePDF(SkWStream* stream, void (*done)(SkWStream*,bool), argument
92 return stream ? SkNEW_ARGS(SkDocument_PDF, (stream, done, enc, dpi)) : NULL;
/external/smack/src/org/jivesoftware/smack/
H A DPacketReader.java51 volatile boolean done; field in class:PacketReader
65 done = false;
126 // Notify connection listeners of the connection closing if done hasn't already been set.
127 if (!done) {
139 done = true;
280 } while (!done && eventType != XmlPullParser.END_DOCUMENT && thread == readerThread);
283 // The exception can be ignored if the the connection is 'done'
285 if (!(done || connection.isSocketClosed())) {
330 boolean done = false;
331 while (!done) {
[all...]
H A DPacketWriter.java47 volatile boolean done; field in class:PacketWriter
66 done = false;
83 if (!done) {
123 done = true;
147 // Wait until there's a packet or we're done.
148 while (!done && (packet = queue.poll()) == null) {
166 while (!done && (writerThread == thisThread)) {
210 // The exception can be ignored if the the connection is 'done'
212 if (!(done || connection.isSocketClosed())) {
213 done
[all...]
/external/webp/src/dsp/
H A Dyuv.c18 static int done = 0; variable
31 if (done) {
60 done = 1;
/external/chromium_org/chrome/browser/sync/glue/
H A Dnon_frontend_data_type_controller_unittest.cc185 static void SignalDone(WaitableEvent* done) { argument
186 done->Signal();
190 WaitableEvent done(true, false);
192 base::Bind(&SyncNonFrontendDataTypeControllerTest::SignalDone, &done));
193 done.TimedWait(TestTimeouts::action_timeout());
194 if (!done.IsSignaled()) {
/external/chromium_org/device/hid/
H A Dhid_connection_unittest.cc98 void FindDevice(const base::Closure& done, int retries) { argument
115 done, retries),
118 message_loop_->PostTask(FROM_HERE, done);
/external/chromium_org/media/formats/mp4/
H A Davc.cc201 bool done = false; local
202 while (!done) {
304 done = true;
/external/chromium_org/net/quic/crypto/
H A Dcrypto_handshake_message.cc240 bool done = false; local
255 done = true;
275 done = true;
284 done = true;
297 done = true;
304 done = true;
308 done = true;
312 if (!done) {
/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...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
H A DExtensionAuditCategory.js102 done: function()
105 this._progress.done();
136 this.done();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DProgressIndicator.js64 done: function()
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DSimpleFontDataCoreText.cpp135 bool done = false; local
141 for (CFIndex r = 0; r < runCount && !done ; ++r) {
171 done = true;
184 done = true;
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Drandom.c252 size_t done, todo, attempt; local
288 for (done = 0; done < num_k_bytes;) {
294 SHA512_Update(&sha, &done, sizeof(done));
300 todo = num_k_bytes - done;
304 memcpy(k_bytes + done, digest, todo);
305 done += todo;
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunport_unittest.cc72 bool done() const { return done_; } function in class:StunPortTest
179 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
191 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
200 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
210 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
221 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
234 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
245 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
264 EXPECT_TRUE_WAIT(done(), kTimeoutMs);
277 EXPECT_TRUE_WAIT(done(), kTimeoutM
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPathMeasure.cpp147 bool done = false;
157 done = true;
204 done = true; variable
207 } while (!done);
514 we're done with the path.
/external/chromium_org/third_party/skia/tests/
H A Dskia_test.cpp65 const int done = 1 + sk_atomic_inc(&fDone); variable
77 SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(), test->getName());
/external/chromium_org/third_party/webrtc/base/
H A Dasynchttprequest_unittest.cc61 bool done() const { return done_; } function in class:rtc::AsyncHttpRequestTest
137 EXPECT_TRUE_WAIT(done(), 5000);
152 EXPECT_TRUE_WAIT(done(), 5000);
168 EXPECT_TRUE_WAIT(done(), 10000);
182 EXPECT_TRUE_WAIT(done(), 5000);
196 EXPECT_TRUE_WAIT(done(), 5000);
224 EXPECT_TRUE_WAIT(done(), 5000);
H A Dhttprequest.h99 bool done() const { return complete_; } function in class:rtc::HttpMonitor
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...]
/external/guava/guava/src/com/google/common/hash/
H A DMessageDigestHashFunction.java65 private boolean done; field in class:MessageDigestHashFunction.MessageDigestHasher
165 checkState(!done, "Cannot use Hasher after calling #hash() on it");
169 done = true;
/external/libnfc-nci/src/nfa/sys/
H A Dnfa_sys_main.c159 UINT8 done = TRUE; local
166 /* as long as one subsystem is not done */
167 done = FALSE;
173 if ((done) && (nfa_sys_cb.is_reg[NFA_ID_DM]))
289 BOOLEAN done = TRUE; local
299 done = FALSE;
314 if ((done) && (nfa_sys_cb.is_reg[NFA_ID_DM]))
/external/lldb/source/Target/
H A DThreadPlanStepUntil.cpp209 bool done; local
213 done = true;
215 done = false;
217 if (done)
239 // If we're at the right stack depth, then we're done.
241 bool done; local
245 done = true;
247 done = false;
261 done = true;
263 done
397 bool done = false; local
[all...]
/external/lldb/tools/lldb-perf/lib/
H A DTestCase.cpp60 bool done = false; local
74 while (!done)
90 done = true;
94 done = !ParseOption(short_option, optarg);
/external/openssl/crypto/bn/
H A Dbn_rand.c323 unsigned done, todo; local
347 for (done = 0; done < num_k_bytes;) {
351 SHA512_Update(&sha, &done, sizeof(done));
357 todo = num_k_bytes - done;
360 memcpy(k_bytes + done, digest, todo);
361 done += todo;
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_conv_adaptor_vcgen.h87 bool done = false; local
88 while(!done) {
131 done = true;

Completed in 7968 milliseconds

1234567891011>>