HomeSort by relevance Sort by last modified time
    Searched defs:completed (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/libusb/libusb/
sync.c 38 int *completed = transfer->user_data; local
39 *completed = 1;
78 int completed = 0; local
96 ctrl_transfer_cb, &completed, timeout);
104 while (!completed) {
110 while (!completed)
147 int *completed = transfer->user_data; local
148 *completed = 1;
158 int completed = 0; local
165 bulk_transfer_cb, &completed, timeout)
    [all...]
  /external/chromium_org/base/test/launcher/
test_result.h 38 // Returns true if the test has completed (i.e. the test binary exited
41 bool completed() const { function in struct:base::TestResult
  /external/chromium_org/third_party/libusb/src/libusb/
sync.c 38 int *completed = transfer->user_data; local
39 *completed = 1;
46 int r, *completed = transfer->user_data; local
49 while (!*completed) {
50 r = libusb_handle_events_completed(ctx, completed);
96 int completed = 0; local
114 sync_transfer_cb, &completed, timeout);
163 int completed = 0; local
170 sync_transfer_cb, &completed, timeout);
227 * the first few chunks have completed. libusbx is careful not to lose any dat
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_time_tracker.h 54 // Records the time that a request either completed or encountered an error.
84 bool completed; member in struct:ExtensionWebRequestTimeTracker::RequestTimeLog
  /external/iproute2/include/
xt-internal.h 40 the current one are completed from parsing point of view */
41 unsigned int completed; member in struct:xtables_rule_match
  /external/chromium_org/chrome/browser/resources/cryptotoken/
requestqueue.js 53 /** @return {boolean} Whether this token has already completed. */
54 RequestToken.prototype.completed = function() {
146 if (!token.completed()) {
  /external/chromium_org/net/disk_cache/blockfile/
mapped_file_unittest.cc 90 bool completed; local
92 &completed));
93 int expected = completed ? 0 : 1;
99 &completed));
100 if (!completed)
124 bool completed; local
125 EXPECT_TRUE(file->Store(&file_block1, &callback, &completed));
126 int expected = completed ? 0 : 1;
131 EXPECT_TRUE(file->Load(&file_block2, &callback, &completed));
132 if (!completed)
    [all...]
sparse_control.cc 118 bool completed; local
119 if (!file->Read(buffer_.get(), len, file_offset, this, &completed))
122 if (completed)
sparse_control_v3.cc 118 bool completed; local
119 if (!file->Read(buffer_.get(), len, file_offset, this, &completed))
122 if (completed)
  /external/chromium_org/ppapi/shared_impl/
tracked_callback.h 53 // completed.
57 // |completed()| before running the callback).
103 // Returns true if the callback was completed (possibly aborted).
104 bool completed() const { return completed_; } function in class:ppapi::TrackedCallback
117 // has not completed and has not been aborted. When receiving a plugin call,
121 // NOTE: an aborted callback has not necessarily completed, so a false result
122 // doesn't imply that the callback has completed.
147 // Block until the associated operation has completed. Returns the result.
  /packages/apps/Gallery/src/com/android/camera/
ImageGetter.java 58 public void completed(); method in interface:ImageGetterCallback
123 mCB.completed();
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
iphoto_file_util_unittest.cc 44 bool* completed,
48 DCHECK(!*completed);
49 *completed = !has_more && error == base::File::FILE_OK;
57 bool* completed) {
59 DCHECK(completed);
63 completed));
228 bool completed = false; local
229 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
231 ASSERT_FALSE(completed);
273 bool completed = false local
274 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
288 bool completed = false; local
289 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
303 bool completed = false; local
304 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
317 bool completed = false; local
318 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
324 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
333 bool completed = false; local
334 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
345 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
    [all...]
itunes_file_util_unittest.cc 43 bool* completed, base::File::Error error,
46 DCHECK(!*completed);
47 *completed = (!has_more && error == base::File::FILE_OK);
55 bool* completed) {
57 DCHECK(completed);
61 completed));
196 bool completed = false; local
197 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
199 ASSERT_FALSE(completed);
241 bool completed = false local
242 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
261 bool completed = false; local
262 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
277 bool completed = false; local
278 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
300 bool completed = false; local
302 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
321 bool completed = false; local
323 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
333 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
343 ReadDirectoryTestHelper(operation_runner(), url, &contents, &completed); local
    [all...]
native_media_file_util_unittest.cc 84 bool* completed,
88 EXPECT_TRUE(!*completed);
89 *completed = !has_more;
235 bool completed = false; local
237 url, base::Bind(&DidReadDirectory, &content, &completed));
239 EXPECT_TRUE(completed);
  /external/chromium_org/content/browser/media/
webrtc_identity_store_unittest.cc 26 static void OnRequestCompleted(bool* completed,
35 *completed = true;
70 bool* completed,
77 base::Bind(&OnRequestCompleted, completed, certificate, private_key));
95 bool completed = false; local
101 &completed,
104 EXPECT_TRUE(completed);
108 bool completed = false; local
114 base::Bind(&OnRequestCompleted, &completed, &dummy, &dummy));
119 EXPECT_FALSE(completed);
    [all...]
  /external/chromium_org/content/browser/streams/
stream_unittest.cc 85 bool completed() const { function in class:content::TestStreamReader
163 EXPECT_TRUE(reader.completed());
190 EXPECT_TRUE(reader.completed());
  /external/chromium_org/ui/snapshot/
snapshot_aura_unittest.cc 148 if (holder->completed())
167 bool completed() const { function in class:ui::SnapshotAuraTest::SnapshotHolder
  /external/smack/src/org/apache/qpid/management/common/sasl/
PlainSaslClient.java 37 private boolean completed; field in class:PlainSaslClient
46 completed = false;
60 if (completed)
63 "completed");
65 completed = true;
108 return completed;
113 if (completed) {
118 "completed");
124 if (completed)
132 "completed");
    [all...]
  /external/chromium_org/content/renderer/
resource_fetcher_browsertest.cc 67 bool completed() const { return completed_; } function in class:content::FetcherDelegate
158 ASSERT_TRUE(delegate->completed());
174 ASSERT_TRUE(delegate->completed());
193 EXPECT_TRUE(delegate->completed());
212 EXPECT_TRUE(delegate->completed());
245 ASSERT_TRUE(delegate->completed());
262 ASSERT_TRUE(delegate->completed());
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
dtmfsender_unittest.cc 65 bool completed() const { function in class:FakeDtmfObserver
249 EXPECT_TRUE_WAIT(observer_->completed(), kMaxWaitMs);
270 // Wait until it's completed.
271 EXPECT_TRUE_WAIT(observer_->completed(), kMaxWaitMs);
318 // Wait until it's completed.
319 EXPECT_TRUE_WAIT(observer_->completed(), kMaxWaitMs);
332 EXPECT_TRUE_WAIT(observer_->completed(), kMaxWaitMs);
  /external/chromium_org/third_party/sqlite/src/src/
test4.c 39 int completed; /* Number of operations completed */ member in struct:Thread
73 p->completed = 1;
74 while( p->opnum<=p->completed ) sched_yield();
81 p->completed++;
82 while( p->opnum<=p->completed ) sched_yield();
96 p->completed++;
147 threadset[i].completed = 0;
163 while( p->opnum>p->completed ) sched_yield();
213 ** completed. If ID is "*" then stop all threads
    [all...]
test7.c 62 volatile int completed; /* Number of operations completed */ member in struct:Thread
95 p->completed = 1;
96 while( p->opnum<=p->completed ) sched_yield();
103 p->completed++;
104 while( p->opnum<=p->completed ) sched_yield();
118 p->completed++;
169 threadset[i].completed = 0;
186 while( p->opnum>p->completed ) sched_yield();
236 ** completed. If ID is "*" then stop all client threads
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
LevelTree.java 36 public boolean completed; field in class:LevelTree.Level
48 completed = false;
226 level.completed = true;
229 level.completed = true;
232 level.completed = false;
240 int completed = 0; local
245 if (level.completed) {
246 completed |= 1 << y;
249 return completed;
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommand.java 361 * The command has completed. The command session has ended.
363 completed, enum constant in enum:AdHocCommand.Status
395 * The command should be completed (if possible).
436 * (either because it was completed, canceled, or timed out).
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/apache/harmony/kernel/dalvik/
ThreadsTest.java 152 /** whether the run has completed */
153 private boolean completed; field in class:ThreadsTest.Parker
198 completed = true;
212 if (! completed) {
217 if (! completed) {

Completed in 629 milliseconds

1 2 3 4