/external/selinux/libselinux/src/ |
query_user_context.c | 80 int done = 0; /* true if a non-empty field has been obtained */ local 82 while (!done) { /* Keep going until we get a value for the field */ 94 done = 1; 119 int done = 0; /* true if a valid sid has been obtained */ local 121 /* Initialize the context. How this is done depends on whether 131 while (!done) { 170 done = 1;
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_dlssynth.c | 386 EAS_BOOL done = EAS_FALSE; local 428 done = WT_CheckSampleEnd(pWTVoice, &intFrame, EAS_FALSE); 443 done = EAS_TRUE; 445 return done;
|
/external/v8/test/cctest/ |
test-code-stubs-arm.cc | 59 Label done; local 94 __ TryInlineTruncateDoubleToI(destination_reg, d0, &done); 101 __ bind(&done);
|
test-code-stubs-arm64.cc | 59 Label done; local 90 __ TryConvertDoubleToInt64(destination_reg, d0, &done); 97 __ bind(&done);
|
test-code-stubs-mips.cc | 60 Label done; local 92 __ TryInlineTruncateDoubleToI(destination_reg, f12, &done); 99 __ bind(&done);
|
test-code-stubs-mips64.cc | 60 Label done; local 92 __ TryInlineTruncateDoubleToI(destination_reg, f12, &done); 99 __ bind(&done);
|
/external/webp/src/dsp/ |
yuv.c | 18 static int done = 0; variable 31 if (done) { 60 done = 1;
|
/frameworks/av/media/libstagefright/ |
FrameRenderTracker.cpp | 111 std::list<Info> done; local 140 done.splice(done.end(), mRenderQueue, it++); 149 return done;
|
/hardware/intel/common/utils/media_resource_manager/arbitrator/ |
MediaResourceArbitrator.cpp | 173 int done; local 198 done = len < mBufSize; 199 if (XML_Parse(parser, (const char *)pBuf, len, done) == XML_STATUS_ERROR) { 203 } while (!done);
|
/libcore/luni/src/main/java/java/io/ |
PipedOutputStream.java | 68 stream.done();
|
PipedWriter.java | 68 reader.done();
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ExecutorCompletionService.java | 91 protected void done() { completionQueue.add(task); } method in class:ExecutorCompletionService.QueueingFuture
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_threaded_import.py | 13 done = thread.allocate_lock() variable 16 global N, critical_section, done 21 # Must release critical_section before releasing done, else the main 27 done.release() 55 global N, done 62 done.acquire() 68 done.acquire() 71 done.release()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_threaded_import.py | 13 done = thread.allocate_lock() variable 16 global N, critical_section, done 21 # Must release critical_section before releasing done, else the main 27 done.release() 55 global N, done 62 done.acquire() 68 done.acquire() 71 done.release()
|
/system/bt/hci/test/ |
hci_hal_mct_test.cpp | 58 static semaphore_t *done; variable 96 semaphore_post(done); 102 semaphore_post(done); 151 done = semaphore_new(0); 167 semaphore_free(done); 226 semaphore_wait(done); 229 semaphore_wait(done);
|
/system/bt/osi/test/ |
eager_reader_test.cpp | 69 static semaphore_t *done; variable 76 done = semaphore_new(0); 80 semaphore_free(done); 97 semaphore_post(done); 114 semaphore_post(done); 131 semaphore_wait(done); 144 semaphore_wait(done);
|
/build/tools/atree/ |
atree.cpp | 117 bool done = false; local 118 while (!done) { 123 done = true; 282 // must be done before create new directories. 321 debug_printf(" done.\n");
|
/external/boringssl/src/crypto/bn/ |
random.c | 255 size_t done, todo, attempt; local 291 for (done = 0; done < num_k_bytes;) { 297 SHA512_Update(&sha, &done, sizeof(done)); 303 todo = num_k_bytes - done; 307 memcpy(k_bytes + done, digest, todo); 308 done += todo;
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
GcFinalization.java | 125 * Waits until the given future {@linkplain Future#isDone is done}, invoking the garbage 156 String.format("Future not done within %d second timeout", timeoutSeconds)); 229 CountDownLatch done = new CountDownLatch(1); local 230 createUnreachableLatchFinalizer(done); 231 await(done);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/ |
TokenIterator.java | 31 private boolean done; field in class:TokenIterator 44 done = false; 54 if (done) { 61 done = true;
|
/external/libnfc-nci/src/nfa/sys/ |
nfa_sys_main.c | 159 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/libvterm/src/ |
pen.c | 218 // This logic is easier to do 'done' backwards; set it true, and make it 220 int done = 1; local 361 done = 0; 365 if(!done)
|
/external/lldb/examples/scripting/ |
dictionary.c | 164 int done = 0; local 174 while (!done && fgets (buffer, sizeof(buffer), stdin))
|
/external/lldb/source/Target/ |
ThreadPlanStepUntil.cpp | 209 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 = false 397 bool done = false; local [all...] |
/external/lldb/test/pexpect-2.4/examples/ |
chess.py | 117 done = 0 variable 118 while not done:
|