HomeSort by relevance Sort by last modified time
    Searched full:pending (Results 201 - 225 of 4441) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/sync/util/
cryptographer.h 109 // Will decrypt the pending keys and install them if possible (pending key
117 // Will decrypt the pending keys and install them if possible (pending key
125 // Will decrypt the pending keys and install them if possible (pending key
142 // cryptographer has no pending keys. Like other calls that access the
147 // SetPendingKeys using |params|. Returns true if the pending keys were
165 // Returns whether there is a pending set of keys that needs to be decrypted.
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_buffer.c 90 * Flush any pending primitives, finish writing any pending DMA
97 if (sbuf->dma.pending) {
115 * No pending ranges to upload so far, so we can tell the host to
123 * Synchronizing, so flush any pending primitives, finish writing any
124 * pending DMA command, and ensure the next DMA will be done in order.
129 if (sbuf->dma.pending) {
134 * We have a pending DMA upload from a hardware buffer, therefore
306 assert(!sbuf->dma.pending);
svga_resource_buffer.h 151 * Information about pending DMA uploads.
160 boolean pending; member in struct:svga_buffer::__anon14854
170 * Context that has the pending DMA to this buffer.
176 * Linked list head, used to gather all buffers with pending dma uploads on
177 * a context. It is only valid if the dma.pending is set above.
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_buffer.c 90 * Flush any pending primitives, finish writing any pending DMA
97 if (sbuf->dma.pending) {
115 * No pending ranges to upload so far, so we can tell the host to
123 * Synchronizing, so flush any pending primitives, finish writing any
124 * pending DMA command, and ensure the next DMA will be done in order.
129 if (sbuf->dma.pending) {
134 * We have a pending DMA upload from a hardware buffer, therefore
306 assert(!sbuf->dma.pending);
svga_resource_buffer.h 151 * Information about pending DMA uploads.
160 boolean pending; member in struct:svga_buffer::__anon25219
170 * Context that has the pending DMA to this buffer.
176 * Linked list head, used to gather all buffers with pending dma uploads on
177 * a context. It is only valid if the dma.pending is set above.
  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_test_helper.h 41 // Runs all pending store callbacks.
44 // Runs all pending retrieve callbacks.
47 // Flushes all pending operations.
50 // Checks whether any asynchronous Store/Retrieve operations are pending.
165 // Flushes any pending device settings operations.
  /external/chromium_org/chrome/browser/extensions/updater/
request_queue.h 35 // - call StartNextRequest to schedule the next pending request (if any).
90 // Compares the release time of two pending requests.
104 // Priority queue of pending requests. Not using std::priority_queue since
105 // the code needs to be able to iterate over all pending requests.
112 // Timer to schedule calls to StartNextRequest, if the first pending request
  /external/chromium_org/chrome/test/base/
browser_with_test_window_test.h 65 // // This is equivalent to the above, and lets you test pending navigations.
110 // Commits the pending load on the given controller. It will keep the
111 // URL of the pending load. If there is no pending load, this does nothing.
114 // Creates a pending navigation on the given navigation controller to the
  /external/chromium_org/content/browser/web_contents/
web_contents_impl_browsertest.cc 61 // a pending entry is present.
101 // pending entry is present.
109 // Start a new pending navigation as soon as the first load commits.
123 // around a pending entry that could be used in a URL spoof. We test this in
133 // Navigate to an invalid URL and make sure it doesn't leave a pending entry.
render_view_host_manager.cc 132 // Create a pending RenderViewHost. It will give us the one we should use
136 return NULL; // We weren't able to create a pending render view host.
185 // If we are cross-navigating, we should stop the pending renderers. This
205 // the pending RenderViewHost is still responsive.)
208 // unload handler to finish. We'll pretend that it did. The pending
228 // Make sure this is from our current RVH, and that we have a pending
229 // navigation from OnCrossSiteResponse. (There may be no pending navigation
256 // Even when there is no pending RVH, there may be a pending Web UI.
263 // The pending cross-site navigation completed, so show the renderer
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
query_tracker_unittest.cc 137 EXPECT_FALSE(query->Pending());
144 EXPECT_FALSE(query->Pending());
151 EXPECT_TRUE(query->Pending());
158 EXPECT_TRUE(query->Pending());
169 EXPECT_FALSE(query->Pending());
  /external/chromium_org/ppapi/shared_impl/
callback_tracker.h 29 // - Before |PPP_ShutdownModule()| is called, every pending callback (for that
57 // |CallbackTracker| tracks pending Pepper callbacks for a single module. It
58 // also tracks, for each resource ID, which callbacks are pending. When a
86 // For each resource ID with a pending callback, store a set with its pending
  /external/kernel-headers/original/linux/
sem.h 28 struct sem_queue *sem_pending; /* pending operations to be processed */
29 struct sem_queue **sem_pending_last; /* last pending operation */
97 struct sem_queue *sem_pending; /* pending operations to be processed */
98 struct sem_queue **sem_pending_last; /* last pending operation */
113 struct sembuf * sops; /* array of pending operations */
  /external/valgrind/main/coregrind/
pub_core_libcsignal.h 81 /* A cut-down version of POSIX sigtimedwait: poll for pending signals
85 not-pending-any-more. If none are pending, return zero. The _zero
87 pending it returns immediately. Perhaps a better name would be
88 'sigpoll'. Returns -1 on error, 0 if no signals pending, and n > 0
  /frameworks/base/core/java/android/content/
SyncStatusInfo.java 43 public boolean pending; field in class:SyncStatusInfo
85 parcel.writeInt(pending ? 1 : 0);
115 pending = parcel.readInt() != 0;
147 pending = other.pending;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsBroadcastUndelivered.java 36 * avoid delaying phone app startup. The last step is to broadcast the first pending message
37 * from the main thread, then the remaining pending messages will be broadcast after the
48 * Query projection for dispatching pending messages at boot time.
106 Rlog.e(TAG, "error getting pending message cursor");
160 Rlog.e(TAG, "error reading pending SMS messages", e);
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java 78 // Here we setup the a pending intent template. Individuals items of a collection
79 // cannot setup their own pending intents, instead, the collection as a whole can
80 // setup a pending intent template, and the individual items can set a fillInIntent
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page_unittest.cc 42 PENDING,
54 user_response_ = PENDING;
135 // We did not proceed, the pending entry should be gone.
  /external/chromium/chrome/common/extensions/docs/static/
api_other.html 21 <!-- [PENDING: check! should link to complete list] -->
74 <!-- [PENDING: link to complete list of webkit apis] -->
77 <dd> Because JSON is in V8, you don't need to include a JSON library to use JSON functions. <!-- [PENDING: what other APIs are in v8? link to complete list] --></dd>
  /external/chromium_org/chrome/browser/chromeos/offline/
offline_load_page_unittest.cc 47 PENDING,
54 user_response_ = PENDING;
139 // We did not proceed, the pending entry should be gone.
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_extension_helper.h 65 // Returns true iff the extension with the given id is pending
70 // Installs all extensions pending sync in |profile| of the given
80 enum EnabledState { DISABLED, PENDING, ENABLED };
  /external/chromium_org/components/webdata/common/
web_data_request_manager.h 105 // Cancel any pending request.
111 // Register the request as a pending request.
126 // A lock to protect pending requests and next request handle.
  /external/chromium_org/content/renderer/pepper/
pepper_in_process_router.h 89 // Pending sync message id.
92 // Reply deserializer of the pending sync message.
95 // Reply result of the pending sync message.
  /external/chromium_org/media/base/
video_decoder.h 39 // 2) This method should not be called during pending decode, reset or stop.
63 // Resets decoder state, fulfilling all pending DecodeCB and dropping extra
69 // Stops decoder, fires any pending callbacks and sets the decoder to an
  /external/chromium_org/net/quic/crypto/
proof_verifier.h 52 // PENDING results from a verification which will occur asynchonously. When
54 PENDING = 2,
66 // This function may also return PENDING, in which case the ProofVerifier

Completed in 949 milliseconds

1 2 3 4 5 6 7 891011>>