HomeSort by relevance Sort by last modified time
    Searched full:busy (Results 1 - 25 of 1604) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/063-process-manager/
info.txt 2 doesn't cause the system to busy-wait.
  /system/chre/apps/chqts/build/busy_startup/
Makefile 6 NANOAPP_NAME_STRING := \"CHQTS\ Busy\ Startup\"
  /external/javasqlite/src/main/java/SQLite/
BusyHandler.java 4 * Callback interface for SQLite's user defined busy handler.
19 public boolean busy(String table, int count); method in interface:BusyHandler
  /external/perfetto/src/ftrace_reader/test/data/android_hammerhead_MRA59G_3.4.0/events/kgsl/kgsl_gpubusy/
format 11 field:unsigned int busy; offset:16; size:4; signed:0;
14 print fmt: "d_name=%s busy=%u elapsed=%d", __get_str(device_name), REC->busy, REC->elapsed
  /external/perfetto/src/ftrace_reader/test/data/android_seed_N2F62_3.10.49/events/kgsl/kgsl_gpubusy/
format 10 field:unsigned int busy; offset:12; size:4; signed:0;
13 print fmt: "d_name=%s busy=%u elapsed=%d", __get_str(device_name), REC->busy, REC->elapsed
  /external/perfetto/src/ftrace_reader/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/kgsl/kgsl_gpubusy/
format 10 field:unsigned int busy; offset:12; size:4; signed:0;
13 print fmt: "d_name=%s busy=%u elapsed=%d", __get_str(device_name), REC->busy, REC->elapsed
  /external/ltp/testcases/network/busy_poll/
busy_poll_lib.sh 23 tst_brkm TCONF "busy poll not configured, CONFIG_NET_RX_BUSY_POLL"
30 grep -q 'busy-poll.*on' || \
31 tst_brkm TCONF "busy poll not supported by driver"
35 tst_brkm TCONF "busy poll not supported"
  /external/wpa_supplicant_8/src/ap/
acs.c 70 * observed busy time over the time we spent on the channel,
77 * (busy time - tx time) / (active time - tx time) * 2^(chan_nf + band_min_nf)
82 * What this does is it decreases the observed busy time ratio if the
87 * If channel busy time is not available the fallback is to use channel RX time.
93 * (busy time - tx time) / (active time - tx time) *
97 * However to account for cases where busy/rx time is 0 (channel load is then
101 * 10^(chan_nf/5) + (busy time - tx time) / (active time - tx time) *
134 * ACS: 1: min_nf=-113 interference_factor=0.0802469 nf=-113 time=162 busy=0 rx=13
135 * ACS: 2: min_nf=-113 interference_factor=0.0745342 nf=-113 time=161 busy=0 rx=12
136 * ACS: 3: min_nf=-113 interference_factor=0.0679012 nf=-113 time=162 busy=0 rx=1
295 long double factor, busy, total; local
    [all...]
  /external/libmtp/logs/
mtp-detect-huawei-Kavak-Y625-U03.txt 12 inep: usb_get_endpoint_status(): Device or resource busy
13 outep: usb_get_endpoint_status(): Device or resource busy
mtp-detect-archos-5.txt 3 usb_claim_interface(): Device or resource busy
mtp-detect-gigaware-gx400.txt 11 usb_claim_interface(): Device or resource busy
  /external/perfetto/src/ftrace_reader/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/kgsl/kgsl_popp_mod/
format 13 print fmt: "d_name=%s GPU busy mod=%d bus busy mod=%d", __get_str(device_name), REC->x, REC->y
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
BusyDeviceException.java 22 * Exception thrown when the device is busy and the requested operation cannon be completed.
26 super("The MTP device is busy.");
  /external/curl/docs/cmdline-opts/
local-port.d 8 that will be busy at times so setting this range to something too narrow might
  /external/linux-kselftest/tools/testing/selftests/ftrace/test.d/kprobe/
busy_check.tc 3 # description: Kprobe dynamic event - busy event check
  /external/perfetto/src/ftrace_reader/test/data/android_flounder_lte_LRX16F_3.10.40/events/nvhost_podgov/podgov_print_target/
format 10 field:long busy; offset:16; size:8; signed:1;
17 print fmt: "podgov (%s): busy %ld <%d>, curr %ld, t %ld, hint %d <%d>
18 ", dev_name(REC->dev), REC->busy, REC->avg_busy, REC->curr, REC->target, REC->hint, REC->avg_hint
  /external/python/cpython2/Demo/threads/
find.py 39 # - busy and work are only modified when mutex is locked
41 # - busy is the number of jobs being done
42 # - todo is locked iff there is no work and somebody is busy
49 self.busy = 0
62 if self.busy == 0 and len(self.work) == 0:
68 self.busy = self.busy + 1
76 self.busy = self.busy - 1
77 if self.busy == 0 and len(self.work) == 0
    [all...]
  /external/libmojo/mojo/edk/system/
handle_table.cc 67 if (it->second.busy)
85 if (it->second.busy)
93 it->second.busy = true;
103 DCHECK(it != handles_.end() && it->second.busy);
113 DCHECK(it != handles_.end() && it->second.busy);
114 it->second.busy = false;
  /cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
BusyWaitUtils.java 24 * Utility class for busy waiting.
39 * Busy waiting until {@link PollingCondition#check()} returns {@code true}.
55 * Busy waiting until {@link PollingCondition#check()} returns {@code true}.
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
MojoResult.java 27 public static final int BUSY = 16;
73 case BUSY:
74 return "BUSY";
  /art/test/123-compiler-regressions-mt/src/
Main.java 63 while (state != 1) { } // Busy loop.
71 while (state != 2) { } // Busy loop.
90 } while (s != 1); // Busy loop.
110 } while (s != 2); // Busy loop.
  /external/valgrind/gdbserver_tests/
nlsigvgdb.stdinB.gdb 9 # an invocation while the gdbserver is already busy.
  /external/compiler-rt/test/tsan/
signal_reset.cc 21 static void* busy(void *p) { function
62 pthread_create(&th[0], 0, busy, 0);
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 20 #define EBUSY 16 /* Device or resource busy */
30 #define ETXTBSY 26 /* Text file busy */
  /external/mesa3d/src/gallium/drivers/radeon/
r600_gpu_load.c 30 * frequency and the "busy" or "idle" counter is incremented based on
120 unsigned busy = p_atomic_read(&rscreen->grbm_counters.array[busy_index]); local
123 return busy | ((uint64_t)idle << 32);
130 unsigned busy = (end & 0xffffffff) - (begin & 0xffffffff); local
133 /* Calculate the % of time the busy counter was being incremented.
139 if (idle || busy) {
140 return busy*100 / (busy + idle);

Completed in 1535 milliseconds

1 2 3 4 5 6 7 8 91011>>