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

1 2 3 4 5 6 7 8

  /bionic/libc/bionic/
getentropy.cpp 38 size_t collected = 0;
39 while (collected < buffer_size) {
40 ssize_t count = TEMP_FAILURE_RETRY(read(fd, static_cast<char*>(buffer) + collected,
41 buffer_size - collected));
46 collected += count;
62 size_t collected = 0; local
63 while (collected < buffer_size) {
64 long count = TEMP_FAILURE_RETRY(getrandom(static_cast<char*>(buffer) + collected,
65 buffer_size - collected, GRND_NONBLOCK));
75 collected += count
    [all...]
  /prebuilts/go/darwin-x86/test/
gc2.go 8 // Test that buffered channels are garbage collected properly.
10 // have self loops that kept them from being collected.
11 // (Cyclic data with finalizers is never finalized, nor collected.)
heapsampling.go 61 // checkAllocations validates that the profile records collected for
163 // if rate==1 all samples were collected so no adjustment is needed.
  /prebuilts/go/linux-x86/test/
gc2.go 8 // Test that buffered channels are garbage collected properly.
10 // have self loops that kept them from being collected.
11 // (Cyclic data with finalizers is never finalized, nor collected.)
heapsampling.go 61 // checkAllocations validates that the profile records collected for
163 // if rate==1 all samples were collected so no adjustment is needed.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue22781.go 24 // missed, leading to *k being collected prematurely.
issue15329.go 19 // so it was at risk of being garbage collected by the evaluation of
  /prebuilts/go/linux-x86/test/fixedbugs/
issue22781.go 24 // missed, leading to *k being collected prematurely.
issue15329.go 19 // so it was at risk of being garbage collected by the evaluation of
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
bpo-10.d 8 # Check that GC removes all (two) BPO:s when all are collected.
bpo-9m.d 8 # Check that GC does not mess up things when no BPO:s are collected.
bpo-11.d 9 # Check that GC removes one of the three BPO:s, for the collected section.
bpo-9.d 8 # Check that GC does not mess up things when no BPO:s are collected.
  /external/clang/lib/StaticAnalyzer/Core/
CheckerRegistry.cpp 49 CheckerOptInfo &opt, CheckerInfoSet &collected) {
78 collected.insert(&*i);
80 collected.remove(&*i);
  /prebuilts/go/darwin-x86/src/runtime/pprof/
protomem.go 70 // account for its probability of appearing in the collected
73 // each collected sample by its probability of appearing in the
84 // if rate==1 all samples were collected so no adjustment is needed.
  /prebuilts/go/linux-x86/src/runtime/pprof/
protomem.go 70 // account for its probability of appearing in the collected
73 // each collected sample by its probability of appearing in the
84 // if rate==1 all samples were collected so no adjustment is needed.
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
InstrumentationTestTest.java 282 // Mock collected tests
283 RunInstrumentationTestsAnswer collected = local
314 doAnswer(collected)
347 // Mock collected tests
348 RunInstrumentationTestsAnswer collected = local
388 doAnswer(collected)
423 RunInstrumentationTestsAnswer collected = local
454 doAnswer(collected)
481 RunInstrumentationTestsAnswer collected = local
512 doAnswer(collected)
599 RunInstrumentationTestsAnswer collected = local
629 RunInstrumentationTestsAnswer collected = local
661 RunInstrumentationTestsAnswer collected = local
    [all...]
  /frameworks/support/content/src/androidTest/java/androidx/contentpager/content/
TestQueryCallback.java 86 List<Pair<Integer, Cursor>> collected = mReplyLatch.getCollected(); local
89 for (Pair<Integer, Cursor> pair : collected) {
  /external/python/cpython3/Modules/
gcmodule.c 176 /* total number of collected objects */
177 Py_ssize_t collected; member in struct:gc_generation_stats
203 to gc_refs, for each object in the generation being collected.
206 being collected.
377 * generation being collected, which can be recognized
390 * reachable from outside containers, and so can't be collected.
1126 Py_ssize_t result, collected, uncollectable; local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
lfstack.go 21 // is responsible for ensuring the nodes are not garbage collected
  /prebuilts/go/darwin-x86/test/bench/garbage/
tree2.go 93 // Standard gotest benchmark output, collected by build dashboard.
  /prebuilts/go/linux-x86/src/runtime/
lfstack.go 21 // is responsible for ensuring the nodes are not garbage collected
  /prebuilts/go/linux-x86/test/bench/garbage/
tree2.go 93 // Standard gotest benchmark output, collected by build dashboard.
  /external/compiler-rt/lib/asan/
asan_fake_stack.cc 143 uptr collected = 0; local
153 collected++;
  /cts/apps/CtsVerifier/assets/scripts/
execute_power_tests.py 56 # whether to log data collected to a file for each sensor run:
    [all...]

Completed in 1679 milliseconds

1 2 3 4 5 6 7 8