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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/x86/
aad_aam.stdout.exp 2 test completed
  /libcore/ojluni/src/main/java/java/nio/channels/
CompletionHandler.java 33 * The {@link #completed completed} method is invoked when the I/O operation
48 * Invoked when an operation has completed.
55 void completed(V result, A attachment); method in interface:CompletionHandler
  /prebuilts/go/darwin-x86/src/net/
cgo_stub.go 19 func cgoLookupHost(ctx context.Context, name string) (addrs []string, err error, completed bool) {
23 func cgoLookupPort(ctx context.Context, network, service string) (port int, err error, completed bool) {
27 func cgoLookupIP(ctx context.Context, name string) (addrs []IPAddr, err error, completed bool) {
31 func cgoLookupCNAME(ctx context.Context, name string) (cname string, err error, completed bool) {
35 func cgoLookupPTR(ctx context.Context, addr string) (ptrs []string, err error, completed bool) {
  /prebuilts/go/linux-x86/src/net/
cgo_stub.go 19 func cgoLookupHost(ctx context.Context, name string) (addrs []string, err error, completed bool) {
23 func cgoLookupPort(ctx context.Context, network, service string) (port int, err error, completed bool) {
27 func cgoLookupIP(ctx context.Context, name string) (addrs []IPAddr, err error, completed bool) {
31 func cgoLookupCNAME(ctx context.Context, name string) (cname string, err error, completed bool) {
35 func cgoLookupPTR(ctx context.Context, addr string) (ptrs []string, err error, completed bool) {
  /external/libusb/libusb/
sync.c 39 int *completed = transfer->user_data; local
40 *completed = 1;
47 int r, *completed = transfer->user_data; local
50 while (!*completed) {
51 r = libusb_handle_events_completed(ctx, completed);
100 int completed = 0; local
122 sync_transfer_cb, &completed, timeout);
171 int completed = 0; local
182 sync_transfer_cb, &completed, timeout);
241 * the first few chunks have completed. libusb is careful not to lose any dat
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
Cancellable.java 45 private boolean completed; field in class:Cancellable
76 if (!completed) {
83 * Returns the exception thrown by the task or null if the task completed
102 completed = true;
  /external/autotest/server/site_tests/autoupdate_ForcedOOBEUpdate/
autoupdate_ForcedOOBEUpdate.py 106 completed = self._get_update_percentage()
107 logging.info('New value: %f, old value: %f', completed, percentage)
108 return completed >= percentage
138 completed = self._get_update_percentage()
139 logging.debug('Checking if %s is greater than %s', completed,
141 if completed > percent:
206 completed = self._get_update_percentage()
210 if not self._update_continued_where_it_left_off(completed):
213 completed = self._get_update_percentage()
219 if not self._update_continued_where_it_left_off(completed)
    [all...]
  /system/core/libunwindstack/tests/
UnwindTest.cpp 97 "Unwind completed without finding all frames\n"
164 void WaitForRemote(pid_t pid, uint64_t addr, bool leave_attached, bool* completed) {
165 *completed = false;
178 *completed = true;
180 if (!*completed || !leave_attached) {
183 if (*completed) {
202 bool completed; local
203 WaitForRemote(pid, reinterpret_cast<uint64_t>(&g_ready_for_remote), true, &completed);
204 ASSERT_TRUE(completed) << "Timed out waiting for remote process to be ready.";
278 bool completed; local
    [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
ProgressDialog.h 45 void SetProgress(UInt64 total, UInt64 completed)
49 _completed = completed;
51 void SetPos(UInt64 completed)
54 _completed = completed;
56 void GetProgress(UInt64 &total, UInt64 &completed)
60 completed = _completed;
ProgressDialog.cpp 108 UInt64 total, completed; local
109 Sync.GetProgress(total, completed);
112 SetPos(completed);
117 int percentValue = (int)(completed * 100 / total);
  /external/clang/test/Sema/
incomplete-decl.c 6 struct foo f; // expected-error{{tentative definition has type 'struct foo' that is never completed}}
10 expected-error{{tentative definition has type 'struct foo' that is never completed}}
  /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/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
simple_sync_srcu.c 42 idx = 1 ^ (sp->completed & 1);
  /external/lz4/contrib/gen_manual/
Makefile 58 @echo Cleaning completed
  /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;
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 53 * boolean completed = false;
56 * completed = ...; // Perform blocking I/O operation
59 * end(completed);
62 * <p> The <tt>completed</tt> argument to the {@link #end end} method tells
63 * whether or not the I/O operation actually completed, that is, whether it had
185 * @param completed
186 * <tt>true</tt> if, and only if, the I/O operation completed
196 protected final void end(boolean completed)
205 if (!completed && !open)
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
TestJob.java 81 double completed = mStarted ? 1F : 0F; local
83 .setProgress(1, (int) completed, true)
84 .setSubText(NumberFormat.getPercentInstance().format(completed))
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FutureLikeCompletionHandler.java 28 public void completed(V result, Object attachment) { method in class:FutureLikeCompletionHandler
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
ClientReader.java 69 public void completed(Integer result, ByteBuffer buffer) {
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
ClientReader.java 69 public void completed(Integer result, ByteBuffer buffer) {
  /frameworks/base/docs/
__DEPRECATED__DO_NOT_EDIT__.txt 4 of 12/2016. Migration of content was completed on 10/16/2016.
  /frameworks/base/docs/html/
__DEPRECATED__DO_NOT_EDIT__.txt 4 of 12/2016. Migration of content was completed on 10/16/2016.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractInterruptibleChannelTest.java 131 void superEnd(boolean completed) throws AsynchronousCloseException {
132 super.end(completed);
  /prebuilts/go/darwin-x86/src/os/exec/
exec_unix.go 17 // completed successfully otherwise.
exec_windows.go 15 // to stdin if the program completed successfully otherwise.

Completed in 1567 milliseconds

1 2 3 4 5 6 7 8 91011>>