Searched defs:done (Results 76 - 100 of 631) sorted by relevance

1234567891011>>

/external/lldb/tools/lldb-platform/
H A Dlldb-platform.cpp210 bool done = false; local
211 while (!interrupt && !done)
213 if (!gdb_server.GetPacketAndSendResponse (UINT32_MAX, error, interrupt, done))
/external/qemu/distrib/sdl-1.2.15/test/
H A Dloopwave.c57 static int done = 0; variable
60 done = 1;
106 while ( ! done && (SDL_GetAudioStatus() == SDL_AUDIO_PLAYING) )
H A Dtestjoystick.c17 int i, done; local
42 done = 0;
43 while ( ! done ) {
91 done = 1;
/external/regex-re2/util/
H A Dstrutil.cc73 // We can increment the last character in the string and be done
78 bool done = false; local
81 while (!done && index >= 0) {
87 done = true;
90 if (!done) {
/external/skia/experimental/Intersection/
H A DSimplifyFindTop_Test.cpp36 bool done, unsortable = false; local
38 findSortableTop(contourList, index, end, bestXY, unsortable, done, true);
/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/smack/src/org/jivesoftware/smack/
H A DReconnectionManager.java44 boolean done = false; field in class:ReconnectionManager
68 return !done && !connection.isConnected()
188 done = true;
192 done = false;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbrowser-android.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
56 if (done) {
H A Dbrowser-system.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
56 if (done) {
H A Dbrowser-wpadebug.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
57 if (done) {
/external/wpa_supplicant_8/src/utils/
H A Dbrowser-android.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
56 if (done) {
H A Dbrowser-system.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
56 if (done) {
H A Dbrowser-wpadebug.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
57 if (done) {
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbrowser-android.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
56 if (done) {
H A Dbrowser-system.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
56 if (done) {
H A Dbrowser-wpadebug.c35 int done = 0; local
42 done = 1;
45 done = 1;
51 if (done)
57 if (done) {
/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/chrome/browser/autocomplete/
H A Dautocomplete_controller.h63 // done or the query is Stop()ed. It is safe to Start() a new query without
72 // controller is done the notification AUTOCOMPLETE_CONTROLLER_RESULT_READY is
141 bool done() const { return done_; } function in class:AutocompleteController
188 // Calls AutocompleteControllerDelegate::OnResultChanged() and if done sends
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_task_executor.cc81 const file_manager::file_tasks::FileTaskFinishedCallback& done) {
84 done_ = done;
102 // Reset the index, so we know when we're done.
148 // We're done with this file. If this is the last one, then we're done.
79 Execute( const std::vector<FileSystemURL>& file_urls, const file_manager::file_tasks::FileTaskFinishedCallback& done) argument
/external/chromium_org/chrome/browser/download/
H A Ddownload_danger_prompt.cc37 const OnDone& done);
71 const OnDone& done)
75 done_(done) {
240 OnDone done = done_; local
246 if (!done.is_null())
247 done.Run(action);
258 const OnDone& done) {
260 item, web_contents, show_context, done);
261 // |prompt| will be deleted when the dialog is done.
67 DownloadDangerPromptImpl( content::DownloadItem* download, content::WebContents* web_contents, bool show_context, const OnDone& done) argument
254 Create( content::DownloadItem* item, content::WebContents* web_contents, bool show_context, const OnDone& done) argument
/external/chromium_org/chrome/browser/sync/glue/
H A Dhistory_model_worker.cc21 WaitableEvent* done,
23 : work_(work), done_(done), error_(error) {}
70 WaitableEvent* done,
74 scoped_ptr<history::HistoryDBTask> task(new WorkerTask(work, done, error));
78 done->Signal();
19 WorkerTask( const syncer::WorkCallback& work, WaitableEvent* done, syncer::SyncerError* error) argument
67 PostWorkerTask(const base::WeakPtr<HistoryService>& history_service, const syncer::WorkCallback& work, base::CancelableTaskTracker* cancelable_tracker, WaitableEvent* done, syncer::SyncerError* error) argument
/external/chromium_org/components/omnibox/
H A Dautocomplete_provider.h144 // tracking its matches for this query and whether it is done processing the
163 // done. If the provider caches any results, it should clear the cache based
194 // Returns whether the provider is done processing the query.
195 bool done() const { return done_; } function in class:AutocompleteProvider
/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/remoting/client/
H A Daudio_decode_scheduler.cc24 const base::Closure& done);
35 void DecodePacket(scoped_ptr<AudioPacket> packet, const base::Closure& done);
39 const base::Closure& done);
69 const base::Closure& done) {
73 base::Passed(&packet), done));
83 const base::Closure& done) {
89 base::Passed(&decoded_packet), done));
94 const base::Closure& done) {
99 done.Run();
119 const base::Closure& done) {
67 ProcessAudioPacket( scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
81 DecodePacket( scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
92 ProcessDecodedPacket( scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
118 ProcessAudioPacket(scoped_ptr<AudioPacket> packet, const base::Closure& done) argument
[all...]
/external/chromium_org/remoting/protocol/
H A Dconnection_tester.h39 bool done() { return done_; } function in class:remoting::protocol::StreamConnectionTester

Completed in 1752 milliseconds

1234567891011>>