HomeSort by relevance Sort by last modified time
    Searched refs:batch (Results 76 - 100 of 251) sorted by null

1 2 34 5 6 7 8 91011

  /hardware/invensense/6515/libsensors_iio/
SensorBase.h 98 virtual int batch(int handle, int flags, int64_t period_ns, int64_t timeout);
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.h 97 virtual int batch(int handle, int flags, int64_t period_ns, int64_t timeout);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionManager.java 158 int batch = 50; local
162 int count = index + batch < total
163 ? batch
173 index += batch;
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactResolver.java 85 // Start to process a new batch.
91 LogUtils.d(TAG, "ContactResolver << batch skip");
96 LogUtils.d(TAG, "ContactResolver >> batch start");
98 // Make a copy of the batch.
99 LinkedHashSet<ContactRequestHolder> batch = new LinkedHashSet<ContactRequestHolder>(mBatch); local
105 mTask = getContactResolverTask(batch);
111 LinkedHashSet<ContactRequestHolder> batch) {
112 return new ContactResolverTask(batch, mResolver, mCache, this);
130 * means that every ContactDrawable on the screen will add its ContactRequest to the batch in
135 * the event queue. Every time something is added to the batch as part of the same layout pass
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
corruption_test.cc 72 WriteBatch batch; local
76 batch.Clear();
77 batch.Put(key, Value(i, &value_space));
84 ASSERT_OK(db_->Write(options, &batch));
226 WriteBatch batch; local
227 batch.Put("a", Value(100, &value_storage));
228 s = db_->Write(WriteOptions(), &batch);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_misc_state.c 74 * which points at the batchbuffer containing the streamed batch state.
108 * which points at the batchbuffer containing the streamed batch state.
158 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
161 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
165 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
167 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
169 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
171 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
511 * In the 3DSTATE_DEPTH_BUFFER batch emitted above, the 'separate
858 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0, 1)
    [all...]
brw_cc.c 217 cc->cc4.cc_viewport_state_offset = (intel->batch.bo->offset +
223 drm_intel_bo_emit_reloc(brw->intel.batch.bo,
226 intel->batch.bo, brw->cc.vp_offset,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_misc_state.c 74 * which points at the batchbuffer containing the streamed batch state.
108 * which points at the batchbuffer containing the streamed batch state.
158 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
161 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
165 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
167 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
169 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
171 OUT_RELOC(brw->intel.batch.bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
511 * In the 3DSTATE_DEPTH_BUFFER batch emitted above, the 'separate
858 OUT_RELOC(intel->batch.bo, I915_GEM_DOMAIN_SAMPLER, 0, 1)
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 189 * <p>As an additional optimization, we use a batch operation to perform all database writes at
212 ArrayList<ContentProviderOperation> batch = new ArrayList<ContentProviderOperation>(); local
252 batch.add(ContentProviderOperation.newUpdate(existingUri)
266 batch.add(ContentProviderOperation.newDelete(deleteUri).build());
275 batch.add(ContentProviderOperation.newInsert(FeedContract.Entry.CONTENT_URI)
283 Log.i(TAG, "Merge solution ready. Applying batch update");
284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncAdapter.java 189 * <p>As an additional optimization, we use a batch operation to perform all database writes at
212 ArrayList<ContentProviderOperation> batch = new ArrayList<ContentProviderOperation>(); local
252 batch.add(ContentProviderOperation.newUpdate(existingUri)
266 batch.add(ContentProviderOperation.newDelete(deleteUri).build());
275 batch.add(ContentProviderOperation.newInsert(FeedContract.Entry.CONTENT_URI)
283 Log.i(TAG, "Merge solution ready. Applying batch update");
284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncAdapter.java 189 * <p>As an additional optimization, we use a batch operation to perform all database writes at
212 ArrayList<ContentProviderOperation> batch = new ArrayList<ContentProviderOperation>(); local
252 batch.add(ContentProviderOperation.newUpdate(existingUri)
266 batch.add(ContentProviderOperation.newDelete(deleteUri).build());
275 batch.add(ContentProviderOperation.newInsert(FeedContract.Entry.CONTENT_URI)
283 Log.i(TAG, "Merge solution ready. Applying batch update");
284 mContentResolver.applyBatch(FeedContract.CONTENT_AUTHORITY, batch);
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_change_tracker.cc 49 SyncStatusCode WriteBatch(scoped_ptr<leveldb::WriteBatch> batch);
276 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch);
285 ResetForURL(url, change_seq, batch.get());
296 ResetForURL(url, change_seq, batch.get());
299 // Fail to apply batch to database wouldn't have critical effect, they'll be
301 tracker_db_->WriteBatch(batch.Pass());
449 leveldb::WriteBatch* batch) {
460 batch->Delete(serialized_url);
602 scoped_ptr<leveldb::WriteBatch> batch) {
606 leveldb::Status status = db_->Write(leveldb::WriteOptions(), batch.get())
    [all...]
  /external/chromium_org/net/data/ssl/scripts/
generate-aia-certs.sh 67 -batch \
88 -batch \
generate-duplicate-cn-certs.sh 73 -batch \
83 -batch \
generate-weak-test-chains.sh 132 -batch \
164 -batch \
  /external/chromium_org/third_party/codesighs/
autosummary.win.bash 162 $OBJROOT/dist/bin/msmap2tsv --symdb $SYMDBFILE --batch < $ALLMAPSFILE > $RAWTSVFILE 2> /dev/null
  /external/iproute2/ip/
ip.c 45 " ip [ -force ] -batch filename\n"
105 static int batch(const char *name) function
224 } else if (matches(opt, "-batch") == 0) {
257 return batch(batch_file);
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texi2dvi 47 -b, --batch no interaction
53 -q, --quiet no output unless errors (implies --batch)
78 batch=false # eval for batch mode
145 -b | --b*) batch=eval;;
146 -q | -s | --q* | --s*) quiet=t; batch=eval;;
576 $batch tex_args="\\${escape}nonstopmode\ \\${escape}input"
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ToastBarOperation.java 49 public ToastBarOperation(int count, int menuId, int type, boolean batch,
53 mBatch = batch;
ConversationUpdater.java 85 * @param isBatch true if this is a batch action, false otherwise.
165 * @param batch whether this is a batch operation
171 boolean batch, boolean showUndo, boolean isMoveTo);
  /device/htc/flounder/sensor_hub/libsensors/
CwMcuSensor.h 123 virtual int batch(int handle, int flags, int64_t period_ns, int64_t timeout);
  /external/chromium_org/components/signin/core/browser/
mutable_profile_oauth2_token_service.cc 227 ScopedBacthChange batch(this);
304 ScopedBacthChange batch(this);
335 ScopedBacthChange batch(this);
367 ScopedBacthChange batch(this);
  /external/chromium_org/storage/browser/fileapi/
sandbox_origin_database.cc 253 leveldb::WriteBatch batch; local
254 batch.Put(LastPathKey(), path_string);
255 batch.Put(origin_key, path_string);
256 status = db_->Write(leveldb::WriteOptions(), &batch);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_syncobj.c 77 sync->bo = intel->batch.bo;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_syncobj.c 77 sync->bo = intel->batch.bo;

Completed in 1254 milliseconds

1 2 34 5 6 7 8 91011