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

1 2 3 45 6 7 8 9

  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.cc 43 WriteBatch* batch; member in struct:leveldb::DBImpl::Writer
401 WriteBatch batch; local
410 WriteBatchInternal::SetContents(&batch, record);
416 status = WriteBatchInternal::InsertInto(&batch, mem);
422 WriteBatchInternal::Sequence(&batch) +
423 WriteBatchInternal::Count(&batch) - 1;
583 // NULL batch means just wait for earlier writes to be done
1404 WriteBatch batch; local
1410 WriteBatch batch; local
    [all...]
repair.cc 199 WriteBatch batch; local
209 WriteBatchInternal::SetContents(&batch, record);
210 status = WriteBatchInternal::InsertInto(&batch, mem);
212 counter += WriteBatchInternal::Count(&batch);
db_bench.cc 721 WriteBatch batch; local
725 batch.Clear();
730 batch.Put(key, gen.Generate(value_size_));
734 s = db_->Write(write_options_, &batch);
833 WriteBatch batch; local
836 batch.Clear();
841 batch.Delete(key);
844 s = db_->Write(write_options_, &batch);
  /frameworks/native/services/sensorservice/
SensorDevice.cpp 149 // Log error. Every activate call should be preceded by a batch() call.
150 ALOGE("\t >>>ERROR: activate called without batch");
162 // Call batch for this sensor with the previously calculated best effort
164 // events, and the best effort batch parameters might have changed.
166 "\t>>> actuating h/w batch %d %d %lld %lld ", handle,
169 mSensorDevice->batch(mSensorDevice, handle,info.bestBatchParams.flags,
192 // On older devices which do not support batch, call setDelay().
203 status_t SensorDevice::batch(void* ident, int handle, int flags, int64_t samplingPeriodNs, function in class:android::SensorDevice
214 return mSensorDevice->batch(mSensorDevice, handle, flags, samplingPeriodNs,
220 errDryRun = mSensorDevice->batch(mSensorDevice, handle, flags | SENSORS_BATCH_DRY_RUN
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 27 private ArrayList<BatchArg> batch; field in class:JDBCPreparedStatement
35 this.batch = null;
386 if (batch == null) {
387 batch = new ArrayList<BatchArg>(args.length);
390 batch.add(new BatchArg(args[i], blobs[i]));
395 if (batch == null) {
398 int[] ret = new int[batch.size() / args.length];
406 BatchArg b = (BatchArg) batch.get(index++);
418 throw new BatchUpdateException("batch failed", ret);
424 if (batch != null)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 101 // For large size classes we use one of the chunks to store the batch.
105 void *batch[kMaxNumCached]; member in struct:__sanitizer::SizeClassMap::TransferBatch
306 typedef typename SizeClassMap::TransferBatch Batch;
332 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c,
336 Batch *b = region->free_list.Pop();
343 NOINLINE void DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) {
475 LFStack<Batch> free_list;
504 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c,
507 Batch *b = region->free_list.Pop();
547 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)))
882 void *batch[2 * SizeClassMap::kMaxNumCached]; member in struct:__sanitizer::SizeClassAllocatorLocalCache::PerClass
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
table_test.cc 367 WriteBatch batch; local
368 batch.Put(it->first, it->second);
369 ASSERT_TRUE(db_->Write(WriteOptions(), &batch).ok());
766 WriteBatch batch; local
767 WriteBatchInternal::SetSequence(&batch, 100);
768 batch.Put(std::string("k1"), std::string("v1"));
769 batch.Put(std::string("k2"), std::string("v2"));
770 batch.Put(std::string("k3"), std::string("v3"));
771 batch.Put(std::string("largekey"), std::string("vlarge"));
772 ASSERT_TRUE(WriteBatchInternal::InsertInto(&batch, memtable).ok())
    [all...]
  /external/grub/util/
grub-install.in 339 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
429 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
454 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
grub-image 131 cat <<EOF | $grub_shell --batch --device-map=/dev/null
grub-image.in 131 cat <<EOF | $grub_shell --batch --device-map=/dev/null
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm_sampler_state.c 310 sampler->ss2.default_color_pointer = (intel->batch.bo->offset +
313 drm_intel_bo_emit_reloc(intel->batch.bo,
317 intel->batch.bo, brw->wm.sdc_offset[ss_index],
brw_vs_state.c 158 drm_intel_bo_emit_reloc(intel->batch.bo,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_sampler_state.c 310 sampler->ss2.default_color_pointer = (intel->batch.bo->offset +
313 drm_intel_bo_emit_reloc(intel->batch.bo,
317 intel->batch.bo, brw->wm.sdc_offset[ss_index],
brw_vs_state.c 158 drm_intel_bo_emit_reloc(intel->batch.bo,
  /external/chromium_org/net/data/ssl/scripts/
generate-cross-signed-certs.sh 77 -batch \
  /external/kernel-headers/original/linux/
rcupdate.h 65 long cur; /* Current batch number. */
66 long completed; /* Number of the last completed batch */
67 int next_pending; /* Is the next batch already waiting? */
71 /* for current batch to proceed. */
74 /* Is batch a before batch b ? */
80 /* Is batch a after batch b ? */
89 * curlist - current batch for which quiescent cycle started if any
93 long quiescbatch; /* Batch # for grace period *
98 long batch; \/* Batch # for current RCU batch *\/ member in struct:rcu_data
    [all...]
  /hardware/invensense/65xx/libsensors_iio/
SensorBase.cpp 149 int SensorBase::batch(int handle, int flags, int64_t period_ns, int64_t timeout)
  /ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/test/
Makefile 86 $(GDB) -batch -x script ./$$TARGET; \
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 86 $(GDB) -batch -x script ./$$TARGET; \
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/stlport/test/
Makefile 86 $(GDB) -batch -x script ./$$TARGET; \
  /frameworks/base/services/java/com/android/server/
AlarmManagerService.java 131 static final class Batch {
138 Batch() {
143 Batch(Alarm seed) {
163 // narrows the batch if necessary; presumes that canHold(alarm) is true
206 // commit the new batch bounds
233 // commit the new batch bounds
260 // commit the new batch bounds
293 b.append("Batch{"); b.append(Integer.toHexString(this.hashCode()));
305 static class BatchTimeOrder implements Comparator<Batch> {
306 public int compare(Batch b1, Batch b2)
383 Batch batch = oldSet.get(batchNum); local
582 Batch batch = new Batch(a); local
586 Batch batch = mAlarmBatches.get(whichBatch); local
1028 Batch batch = mAlarmBatches.get(0); local
    [all...]
  /external/chromium_org/remoting/tools/win/
chromoting-set-channel.bat 11 REM http://stackoverflow.com/questions/4051883/batch-script-how-to-check-for-admin-rights
  /external/chromium_org/third_party/codesighs/
basesummary.win.bash 176 $OBJROOT/dist/bin/msmap2tsv --symdb $SYMDBFILE --batch $RELEVANTARG < $ALLMAPSFILE > $RAWTSVFILE 2> /dev/null
  /external/iproute2/tc/
tc.c 215 " tc [-force] -batch filename\n"
249 static int batch(const char *name) function
325 } else if (matches(argv[1], "-batch") == 0) {
339 return batch(batchfile);
  /sdk/avdlauncher/
Android.mk 8 # Eventually it should simply replace the batch file.

Completed in 928 milliseconds

1 2 3 45 6 7 8 9