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

1 23 4 5 6 7 8 9

  /external/openssh/regress/
sftp.sh 9 SFTPCMDFILE=${OBJ}/batch
ssh-com-sftp.sh 8 SFTPCMDFILE=${OBJ}/batch
  /frameworks/native/libs/input/
InputTransport.cpp 418 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u",
446 Batch& batch = mBatches.editItemAt(batchIndex); local
447 if (canAddSample(batch, &mMsg)) {
448 batch.samples.push(mMsg);
450 ALOGD("channel '%s' consumer ~ appended to batch event",
455 // We cannot append to the batch in progress, so we need to consume
456 // the previous batch right now and defer the new message until later.
459 batch, batch.samples.size(), outSeq, outEvent)
477 Batch& batch = mBatches.editTop(); local
513 Batch& batch = mBatches.editItemAt(i); local
863 const Batch& batch = mBatches.itemAt(i); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppService.java 597 * Add info into a batch. The logic is
599 * 2) If there is no batch, create a batch and insert this transfer into batch,
600 * then run the batch
601 * 3) If there is existing batch and timestamp match, insert transfer into batch
602 * 4) If there is existing batch and timestamp does not match, create a new batch and
624 if (V) Log.v(TAG, "Service create new Batch " + newBatch.mI
729 BluetoothOppBatch batch = mBatchs.get(i); local
737 BluetoothOppBatch batch = mBatchs.get(i); local
782 BluetoothOppBatch batch = mBatchs.get(i); 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 106 ALOGD_IF(DEBUG_CONNECTIONS, "SensorFusion calling batch ident=%p ", ident);
107 // Activating a sensor in continuous mode is equivalent to calling batch with the default
109 mSensorDevice.batch(ident, mAcc.getHandle(), 0, DEFAULT_EVENTS_PERIOD, 0);
110 mSensorDevice.batch(ident, mMag.getHandle(), 0, DEFAULT_EVENTS_PERIOD, 0);
111 mSensorDevice.batch(ident, mGyro.getHandle(), 0, DEFAULT_EVENTS_PERIOD, 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...]
  /external/chromium_org/net/data/ssl/scripts/
generate-aia-certs.sh 66 -batch \
87 -batch \
generate-policy-certs.sh 68 -batch \
88 -batch \
generate-test-certs.sh 58 -batch \
68 -batch \
generate-client-certificates.sh 80 -batch \
99 -batch \
122 -batch \
133 -batch \
  /external/grub/util/
grub-md5-crypt 91 $grub_shell --batch --device-map=/dev/null <<EOF \
grub-md5-crypt.in 91 $grub_shell --batch --device-map=/dev/null <<EOF \
  /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/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);
corruption_test.cc 74 WriteBatch batch; local
78 batch.Clear();
79 batch.Put(key, Value(i, &value_space));
80 ASSERT_OK(db_->Write(WriteOptions(), &batch));
218 WriteBatch batch; local
219 batch.Put("a", Value(100, &value_storage));
220 s = db_->Write(WriteOptions(), &batch);
  /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 |
  /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;

Completed in 618 milliseconds

1 23 4 5 6 7 8 9