HomeSort by relevance Sort by last modified time
    Searched refs:pending (Results 126 - 150 of 797) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/darwin-x86/src/sync/
rwmutex.go 29 w Mutex // held if there are pending writers
32 readerCount int32 // number of pending readers
49 // A writer is pending, wait for it.
73 // A writer is pending.
94 // Announce to readers there is a pending writer.
  /prebuilts/go/linux-x86/src/sync/
rwmutex.go 29 w Mutex // held if there are pending writers
32 readerCount int32 // number of pending readers
49 // A writer is pending, wait for it.
73 // A writer is pending.
94 // Announce to readers there is a pending writer.
  /external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
project.py 186 pending = collections.deque()
187 pending.extend(start_modules)
188 while len(pending):
189 cur = pending.pop()
199 pending.append(out_dep)
  /prebuilts/go/darwin-x86/src/net/rpc/
client.go 49 pending map[uint64]*Call
85 client.pending[seq] = call
94 call = client.pending[seq]
95 delete(client.pending, seq)
115 call := client.pending[seq]
116 delete(client.pending, seq)
121 // We've got no pending call. That usually means that
148 // Terminate pending calls.
160 for _, call := range client.pending {
199 pending: make(map[uint64]*Call)
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/
client.go 49 pending map[uint64]*Call
85 client.pending[seq] = call
94 call = client.pending[seq]
95 delete(client.pending, seq)
115 call := client.pending[seq]
116 delete(client.pending, seq)
121 // We've got no pending call. That usually means that
148 // Terminate pending calls.
160 for _, call := range client.pending {
199 pending: make(map[uint64]*Call)
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/
multibytecodec.c 766 if (ctx->pending) {
769 Py_INCREF(ctx->pending);
770 origpending = ctx->pending;
772 Py_INCREF(ctx->pending);
773 inbuf_tmp = ctx->pending;
777 Py_CLEAR(ctx->pending);
795 /* recover the original pending buffer */
796 Py_XSETREF(ctx->pending, origpending);
806 "pending buffer overflow");
809 ctx->pending = PyUnicode_Substring(inbuf, inpos, datalen)
    [all...]
  /external/python/cpython3/Modules/zlib/
deflate.c 481 s->pending = 0;
528 int ZEXPORT deflatePending (strm, pending, bits)
529 unsigned *pending;
534 if (pending != Z_NULL)
535 *pending = strm->state->pending;
712 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
725 * Flush as much pending output as possible. All deflate() output, except for
737 len = s->pending;
746 s->pending -= len
    [all...]
  /external/zlib/src/
deflate.c 481 s->pending = 0;
528 int ZEXPORT deflatePending (strm, pending, bits)
529 unsigned *pending;
534 if (pending != Z_NULL)
535 *pending = strm->state->pending;
712 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
725 * Flush as much pending output as possible. All deflate() output, except for
737 len = s->pending;
746 s->pending -= len
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
printer.go 74 pending []whitespace // pending whitespace
75 lastTok token // last token (after any pending semi) processed by print
135 p.pending = append(p.pending, whitespace{p.lastTok, kind /*text*/})
149 for i := len(p.pending) - 1; i >= 0; i-- {
150 switch p.pending[i].kind {
156 } else if sawNewline && impliesSemi(p.pending[i].last) {
160 p.pending[i].kind = k
168 // if text := p.pending[i].text; strings.HasPrefix(text, "/*") && strings.ContainsRune(text, '\n')
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
printer.go 74 pending []whitespace // pending whitespace
75 lastTok token // last token (after any pending semi) processed by print
135 p.pending = append(p.pending, whitespace{p.lastTok, kind /*text*/})
149 for i := len(p.pending) - 1; i >= 0; i-- {
150 switch p.pending[i].kind {
156 } else if sawNewline && impliesSemi(p.pending[i].last) {
160 p.pending[i].kind = k
168 // if text := p.pending[i].text; strings.HasPrefix(text, "/*") && strings.ContainsRune(text, '\n')
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
b44.c 99 * Ring cells waiting to be processed are between 'tx_cur' and 'pending'
104 u32 pending = br32(bp, B44_DMATX_STAT); local
105 pending &= DMATX_STAT_CDMASK;
107 pending /= sizeof(struct dma_desc);
108 return pending & (B44_RING_SIZE - 1);
113 * Ring cells waiting to be processed are between 'rx_cur' and 'pending'
118 u32 pending = br32(bp, B44_DMARX_STAT); local
119 pending &= DMARX_STAT_CDMASK;
121 pending /= sizeof(struct dma_desc);
122 return pending & (B44_RING_SIZE - 1)
845 u32 pending, i; local
    [all...]
  /external/curl/docs/examples/
multi-uv.c 100 int pending; local
104 while((message = curl_multi_info_read(curl_handle, &pending))) {
  /external/libdrm/nouveau/
bufctx.c 74 DRMINITLISTHEAD(&priv->base.pending);
138 DRMLISTADDTAIL(&pref->base.thead, &bctx->pending);
  /frameworks/base/core/java/android/app/
LoaderManager.java 417 LoaderInfo pending = mPendingLoader; local
418 if (pending != null) {
419 // There is a new request pending and we were just
422 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending);
426 installLoader(pending);
446 LoaderInfo pending = mPendingLoader; local
447 if (pending != null) {
448 // There is a new request pending and we were just
451 if (DEBUG) Log.v(TAG, " Switching to pending loader: " + pending)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/common/concurrent/
DialerFutures.java 57 final AtomicInteger pending = new AtomicInteger(output.futures.size()); local
76 if (pending.decrementAndGet() == 0) {
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/
AnomalyConfigJobService.java 59 final JobInfo pending = jobScheduler.getPendingJob(R.integer.job_anomaly_config_update); local
63 if (pending == null && jobScheduler.schedule(jobBuilder.build())
  /external/squashfs-tools/kernel/fs/squashfs/
cache.c 115 entry->pending = 1;
129 entry->pending = 0;
160 if (entry->pending) {
163 wait_event(entry->wait_queue, !entry->pending);
  /external/strace/
rtc.c 70 tprintf("{enabled=%d, pending=%d, time=", wk.enabled, wk.pending);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
ActivityLaunchAnimator.java 99 private void setAnimationPending(boolean pending) {
100 mAnimationPending = pending;
101 mStatusBarWindow.setExpandAnimationPending(pending);
102 if (pending) {
  /hardware/qcom/display/msm8909/sdm/libs/hwc/
hwc_display_null.h 59 virtual DisplayError ControlPartialUpdate(bool enable, uint32_t *pending) { return kErrorNone; }
  /hardware/qcom/display/msm8909/sdm/libs/hwc2/
hwc_display_primary.h 70 virtual DisplayError ControlPartialUpdate(bool enable, uint32_t *pending);
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
hwc_display_null.h 59 virtual DisplayError ControlPartialUpdate(bool enable, uint32_t *pending) { return kErrorNone; }
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc2/
hwc_display_primary.h 70 virtual DisplayError ControlPartialUpdate(bool enable, uint32_t *pending);
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_display_null.h 59 virtual DisplayError ControlPartialUpdate(bool enable, uint32_t *pending) { return kErrorNone; }
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_display_primary.h 68 virtual DisplayError ControlPartialUpdate(bool enable, uint32_t *pending);

Completed in 1153 milliseconds

1 2 3 4 56 7 8 91011>>