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

1 23 4 5 6 7 8 91011

  /external/chromium_org/net/data/ssl/scripts/
generate-test-certs.sh 58 -batch \
68 -batch \
77 -batch \
87 -batch \
generate-redundant-test-chains.sh 103 -batch \
114 -batch \
132 -batch \
generate-policy-certs.sh 69 -batch \
89 -batch \
generate-bad-eku-certs.sh 75 -batch \
generate-client-certificates.sh 81 -batch \
100 -batch \
129 -batch \
140 -batch \
generate-multi-root-test-chains.sh 107 -batch \
119 -batch \
130 -batch \
148 -batch \
  /external/chromium_org/storage/browser/fileapi/
sandbox_directory_database.h 121 const FileInfo& info, FileId file_id, leveldb::WriteBatch* batch);
122 bool RemoveFileInfoHelper(FileId file_id, leveldb::WriteBatch* batch);
  /frameworks/native/libs/input/
InputTransport.cpp 419 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u",
447 Batch& batch = mBatches.editItemAt(batchIndex); local
448 if (canAddSample(batch, &mMsg)) {
449 batch.samples.push(mMsg);
451 ALOGD("channel '%s' consumer ~ appended to batch event",
456 // We cannot append to the batch in progress, so we need to consume
457 // the previous batch right now and defer the new message until later.
460 batch, batch.samples.size(), outSeq, outEvent)
478 Batch& batch = mBatches.editTop(); local
514 Batch& batch = mBatches.editItemAt(i); local
864 const Batch& batch = mBatches.itemAt(i); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_metadata_storage_unittest.cc 293 leveldb::WriteBatch batch; local
301 batch.Put("file:abcd", serialized_entry);
305 batch.Put(std::string("file:abcd") + '\0' + "CACHE", serialized_entry);
307 EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
342 leveldb::WriteBatch batch; local
351 batch.Put(local_id, serialized_entry);
355 batch.Put(local_id + '\0' + "CACHE", serialized_entry);
357 batch.Put('\0' + std::string("ID") + '\0' + resource_id, local_id);
359 EXPECT_TRUE(resource_map()->Write(leveldb::WriteOptions(), &batch).ok());
396 leveldb::WriteBatch batch; local
476 leveldb::WriteBatch batch; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppService.java 612 * Add info into a batch. The logic is
614 * 2) If there is no batch, create a batch and insert this transfer into batch,
615 * then run the batch
616 * 3) If there is existing batch and timestamp match, insert transfer into batch
617 * 4) If there is existing batch and timestamp does not match, create a new batch and
639 if (V) Log.v(TAG, "Service create new Batch " + newBatch.mI
744 BluetoothOppBatch batch = mBatchs.get(i); local
752 BluetoothOppBatch batch = mBatchs.get(i); local
797 BluetoothOppBatch batch = mBatchs.get(i); local
    [all...]
  /external/chromium_org/base/test/launcher/
unit_test_launcher.cc 32 // This constant controls how many tests are run in a single batch by default.
42 "Runs tests using the gtest framework, each batch of tests being\n"
63 " --test-launcher-batch-limit=N\n"
64 " Sets the limit of test batch to run in a single process to N.\n"
133 std::vector<std::string> batch; variable
135 batch.push_back(test_names[i]);
137 if (batch.size() >= batch_limit_) {
138 RunBatch(test_launcher, batch);
139 batch.clear();
143 RunBatch(test_launcher, batch);
257 std::vector<std::string> batch; local
    [all...]
  /cts/suite/audio_quality/lib/src/task/
ModelBuilder.cpp 94 } else if (!caseOnly && ((root = doc.FirstChildElement("batch")) != NULL)) {
187 UniquePtr<TaskBatch> batch(
189 if (batch.get() == NULL) {
193 if (!parseAttributes(root, *batch.get())) {
199 LOGE("ModelBuilder::handleBatch no include inside batch");
218 if (!batch.get()->addChild(testCase.get())) {
231 return batch.release();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_context.c 124 if(i915->batch)
125 i915->iws->batchbuffer_destroy(i915->batch);
169 /* Batch stream debugging is a bit hacked up at the moment:
171 i915->batch = i915->iws->batchbuffer_create(i915->iws);
  /external/mesa3d/src/gallium/drivers/i915/
i915_context.c 124 if(i915->batch)
125 i915->iws->batchbuffer_destroy(i915->batch);
169 /* Batch stream debugging is a bit hacked up at the moment:
171 i915->batch = i915->iws->batchbuffer_create(i915->iws);
  /frameworks/native/services/sensorservice/
SensorFusion.cpp 121 // Call batch with timeout zero instead of setDelay().
122 mSensorDevice.batch(ident, mAcc.getHandle(), 0, ns, 0);
123 mSensorDevice.batch(ident, mMag.getHandle(), 0, ms2ns(20), 0);
124 mSensorDevice.batch(ident, mGyro.getHandle(), 0, mTargetDelayNs, 0);
SensorDevice.h 43 // batch call. For continous mode clients, maxBatchReportLatency is set to zero.
56 // Store batch parameters in the KeyedVector and the optimal batch_rate and timeout in
57 // bestBatchParams. For every batch() call corresponding params are stored in batchParams
58 // vector. A continuous mode request is batch(... timeout=0 ..) followed by activate(). A batch
59 // mode request is batch(... timeout > 0 ...) followed by activate().
60 // Info is a per-sensor data structure which contains the batch parameters for each client that
64 // Key is the unique identifier(ident) for each client, value is the batch parameters
69 // Sets batch parameters for this ident. Returns error if this ident is not already present
88 status_t batch(void* ident, int handle, int flags, int64_t samplingPeriodNs
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsTransaction.java 32 * transaction is involved in, and whether the operation being performed is a batch operation.
37 * Whether this transaction is encompassing a batch of operations. If we're in batch mode,
38 * transactional operations from non-batch callers are ignored.
68 * Creates a new transaction object, optionally marked as a batch transaction.
69 * @param batch Whether the transaction is in batch mode.
71 public ContactsTransaction(boolean batch) {
72 mBatch = batch;
157 * @param callerIsBatch Whether this is being performed in the context of a batch operation
    [all...]
  /build/core/
legacy_prebuilts.mk 28 batch \
  /external/chromium_org/build/
gdb-add-index 56 gdb -batch "$file" -ex "save gdb-index $DIRECTORY" -ex "quit"
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
leveldb_wrapper.cc 186 leveldb::WriteBatch batch; local
193 batch.Put(key, transaction.second);
196 batch.Delete(key);
201 leveldb::Status status = db_->Write(leveldb::WriteOptions(), &batch);
  /external/chromium_org/third_party/leveldatabase/src/db/
leveldb_main.cc 93 WriteBatch batch; local
94 WriteBatchInternal::SetContents(&batch, record);
96 static_cast<unsigned long long>(WriteBatchInternal::Sequence(&batch)));
98 Status s = batch.Iterate(&batch_item_printer);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_urb.c 252 if ((brw->intel.batch.used & 15) > 12) {
253 int pad = 16 - (brw->intel.batch.used & 15);
255 brw->intel.batch.map[brw->intel.batch.used++] = MI_NOOP;
brw_wm_state.c 145 wm->wm4.sampler_state_pointer = (intel->batch.bo->offset +
227 drm_intel_bo_emit_reloc(intel->batch.bo,
237 drm_intel_bo_emit_reloc(intel->batch.bo,
240 intel->batch.bo, (brw->sampler.offset |
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_urb.c 252 if ((brw->intel.batch.used & 15) > 12) {
253 int pad = 16 - (brw->intel.batch.used & 15);
255 brw->intel.batch.map[brw->intel.batch.used++] = MI_NOOP;
brw_wm_state.c 145 wm->wm4.sampler_state_pointer = (intel->batch.bo->offset +
227 drm_intel_bo_emit_reloc(intel->batch.bo,
237 drm_intel_bo_emit_reloc(intel->batch.bo,
240 intel->batch.bo, (brw->sampler.offset |

Completed in 486 milliseconds

1 23 4 5 6 7 8 91011