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

1 2 3 4 5 6 7 8 910

  /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/compiler-rt/test/tsan/
signal_reset.cc 21 static void* busy(void *p) { function
62 pthread_create(&th[0], 0, busy, 0);
  /external/libmojo/mojo/edk/system/
handle_table.h 37 // Marks handles as busy and populates |dispatchers|. Returns MOJO_RESULT_BUSY
60 bool busy = false; member in struct:mojo::edk::HandleTable::Entry
  /system/bt/btif/src/
btif_profile_queue.cc 52 bool busy; member in struct:__anon105962
137 * Description Clear the queue's busy status and advance to the next
155 // If the queue is currently busy, we return success anyway,
157 if (p_head->busy) return BT_STATUS_SUCCESS;
159 p_head->busy = true;
  /external/libdrm/amdgpu/
amdgpu_cs.c 315 bool *busy)
337 *busy = args.out.status;
346 bool busy = true; local
364 fence->fence, timeout_ns, flags, &busy);
366 if (!r && !busy)
  /external/e2fsprogs/e2fsck/
mtrace.h 120 /* Heap information for a busy block. */
136 } busy; member in union:__anon17631
  /external/libunwind/include/tdep-ia64/
script.h 63 AO_TS_t busy; /* is the script-cache busy? */ member in struct:ia64_script_cache
  /external/guava/guava/src/com/google/common/cache/
Striped64.java 49 * A single spinlock ("busy") is used for initializing and
141 transient volatile int busy; field in class:Striped64
157 * CASes the busy field from 0 to 1 to acquire lock.
199 if (busy == 0) { // Try to attach new Cell
201 if (busy == 0 && casBusy()) {
212 busy = 0;
229 else if (busy == 0 && casBusy()) {
237 busy = 0;
247 else if (busy == 0 && cells == as && casBusy()) {
257 busy = 0
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCStatement.java 96 int busy = 0; local
121 conn.busy3(conn.db, ++busy)) {
130 int ms = 20 + busy * 10;
JDBCConnection.java 90 public boolean busy(String table, int count) { method in class:JDBCConnection
  /external/libdrm/tests/exynos/
exynos_fimg2d_event.c 35 unsigned int busy; member in struct:g2d_job
57 job->busy = 0;
108 while (jobs[i].busy)
119 if (jobs[i].busy == 0)
167 j->busy = 1;
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aiocp.c 49 static int busy = 0; // # of I/O's in flight variable
235 --busy;
263 --busy;
500 int n = MIN(MIN(aio_maxio - busy, aio_maxio),
529 busy += n;
531 printf("io_submit(%d) busy:%d\n", n, busy);
549 printf("busy:%d aio_maxio:%d tocopy:%d\n",
550 busy, aio_maxio, tocopy);
aio-stress.c 202 int busy; member in struct:io_unit
379 /* worker func to check the busy bits and get an io unit ready for use */
382 if (io->busy == IO_PENDING)
385 io->busy = IO_PENDING;
467 io->busy = IO_FREE;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_buffer_objects.c 182 bool busy; local
204 busy =
208 if (busy) {
210 /* Replace the current busy bo with fresh data. */
216 "to a busy buffer object.\n");
  /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...]
  /system/extras/perfprofd/
perfprofdcore.cc 411 long unsigned busy[2]; local
416 if (!postprocess_proc_stat_contents(contents, &idle[iter], &busy[iter])) {
423 long unsigned total_delta = (idle[1] + busy[1]) - (idle[0] + busy[0]);
424 long unsigned busy_delta = busy[1] - busy[0];
  /device/google/dragon/audio/hal/
cras_dsp_pipeline.c 477 static void use_buffers(char *busy, audio_port_array *audio_ports)
483 while (busy[k])
486 busy[k] = 1;
490 static void unuse_buffers(char *busy, audio_port_array *audio_ports)
496 busy[audio_port->buf_index] = 0;
506 char *busy; local
545 busy = calloc(peak_buf, sizeof(*busy));
582 use_buffers(busy, &instance->output_audio_ports);
583 unuse_buffers(busy, &instance->input_audio_ports)
    [all...]
  /frameworks/base/core/jni/
android_media_AudioRecord.cpp 65 bool busy; member in struct:audiorecord_callback_cookie
89 callbackInfo->busy = true;
124 callbackInfo->busy = false;
290 lpCallbackData->busy = false;
332 lpCallbackData->busy = false;
429 while (lpCookie->busy) {
    [all...]
android_media_AudioTrack.cpp 73 bool busy; member in struct:audiotrack_callback_cookie
130 callbackInfo->busy = true;
165 callbackInfo->busy = false;
324 lpJniStorage->mCallbackData.busy = false;
407 lpJniStorage->mCallbackData.busy = false;
560 while (lpCookie->busy) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
PpContext.h 183 MacroSymbol() : argc(0), args(0), body(0), busy(0), undef(0) { }
187 unsigned busy:1; member in struct:glslang::TPpContext::MacroSymbol
  /system/core/logd/
LogBuffer.cpp 662 bool busy = false; local
703 busy = true;
718 return busy;
795 busy = true;
1017 bool busy = true; local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/hikey/
usb.c 54 unsigned char busy; member in struct:ep_type
150 endpoints[i].busy = 0;
344 endpoints[ep].busy = 1; // true
414 endpoints[ep].busy = 1; //true
505 if (endpoints[ep].busy) {
506 endpoints[ep].busy = 0;//false
550 endpoints[ep].busy = 1;//true
994 if (endpoints[0].busy) {
995 endpoints[0].busy = 0;//false
1006 if (endpoints[0].busy) {
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
m_gdbserver.c 775 /* busy > 0 when gdbserver is currently being called.
776 busy is used to avoid vgdb invoking gdbserver
778 static volatile int busy = 0; variable
782 busy++;
800 busy--;
844 "busy %d vgdb_interrupted_tid %u\n",
845 busy, vgdb_interrupted_tid);
879 if (busy) {
930 busy++;
943 busy--
    [all...]
  /external/autotest/client/tests/aiostress/
aio-stress.c 204 int busy; member in struct:io_unit
376 /* worker func to check the busy bits and get an io unit ready for use */
378 if (io->busy == IO_PENDING)
381 io->busy = IO_PENDING;
457 io->busy = IO_FREE;
    [all...]
  /external/libdrm/intel/
intel_bufmgr_gem.c 654 struct drm_i915_gem_busy busy; local
660 memclear(busy);
661 busy.handle = bo_gem->gem_handle;
663 ret = drmIoctl(bufmgr_gem->fd, DRM_IOCTL_I915_GEM_BUSY, &busy);
665 bo_gem->idle = !busy.busy;
666 return busy.busy;
670 return (ret == 0 && busy.busy);
    [all...]

Completed in 3315 milliseconds

1 2 3 4 5 6 7 8 910