/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationUpdater.java | 85 * @param isBatch true if this is a batch action, false otherwise. 156 * @param batch whether this is a batch operation 162 boolean batch, boolean showUndo, boolean isMoveTo);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
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,
|
brw_sf_state.c | 145 drm_intel_bo *bo = intel->batch.bo; 193 sf->sf5.sf_viewport_state_offset = (intel->batch.bo->offset + 308 intel->batch.bo, (brw->sf.vp_offset |
|
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_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,
|
brw_sf_state.c | 145 drm_intel_bo *bo = intel->batch.bo; 193 sf->sf5.sf_viewport_state_offset = (intel->batch.bo->offset + 308 intel->batch.bo, (brw->sf.vp_offset |
|
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,
|
/frameworks/native/include/input/ |
InputTransport.h | 287 * to determine whether a pending batch is available to be consumed. 334 /* Returns true if there is a pending batch. 356 struct Batch { 359 Vector<Batch> mBatches; 415 // a batch, we append a record here that associates the last sequence number in the 416 // batch with the previous one. When the finished signal is sent, we traverse the 417 // chain to individually finish all input messages that were part of the batch. 427 Batch& batch, size_t count, uint32_t* outSeq, InputEvent** outEvent); 442 static bool canAddSample(const Batch& batch, const InputMessage* msg) [all...] |
/device/lge/hammerhead/libsensors/ |
sensors.cpp | 115 int batch(int handle, int flags, int64_t period_ns, int64_t timeout); 373 int sensors_poll_context_t::batch(int handle, int flags, int64_t period_ns, int64_t timeout) 377 return mSensor[index]->batch(handle, flags, period_ns, timeout); 423 return ctx->batch(handle, flags, period_ns, timeout); 456 /* Batch processing */ 457 dev->device.batch = poll__batch;
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
db_impl.cc | 43 WriteBatch* batch; member in struct:leveldb::DBImpl::Writer 407 WriteBatch batch; local 416 WriteBatchInternal::SetContents(&batch, record); 422 status = WriteBatchInternal::InsertInto(&batch, mem); 428 WriteBatchInternal::Sequence(&batch) + 429 WriteBatchInternal::Count(&batch) - 1; 591 // NULL batch means just wait for earlier writes to be done 1432 WriteBatch batch; local 1438 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);
|
/hardware/invensense/6515/libsensors_iio/ |
sensors_mpl.cpp | 105 int batch(int handle, int flags, int64_t period_ns, int64_t timeout); 320 int sensors_poll_context_t::batch(int handle, int flags, int64_t period_ns, function in class:sensors_poll_context_t 324 return mSensor->batch(handle, flags, period_ns, timeout); 394 return ctx->batch(handle, flags, period_ns, timeout); 435 dev->device.batch = poll__batch;
|
/hardware/invensense/65xx/libsensors_iio/ |
sensors_mpl.cpp | 94 int batch(int handle, int flags, int64_t period_ns, int64_t timeout); 318 int sensors_poll_context_t::batch(int handle, int flags, int64_t period_ns, function in class:sensors_poll_context_t 322 return mSensor->batch(handle, flags, period_ns, timeout); 376 return ctx->batch(handle, flags, period_ns, timeout); 405 /* Batch processing */ 406 dev->device.batch = poll__batch;
|
/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/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests_integrationtest.py | 128 batch = [] 131 if batch and result.pid != current_pid: 132 batches.append(batch) 133 batch = [] 134 batch.append(result.test_name) 135 if batch: 136 batches.append(batch) 230 batch_tests_run = get_test_batches(['--batch-size', '2']) 231 for batch in batch_tests_run: 232 self.assertTrue(len(batch) <= 2, '%s had too many tests' % ', '.join(batch) [all...] |
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_change_tracker.cc | 49 SyncStatusCode WriteBatch(scoped_ptr<leveldb::WriteBatch> batch); 265 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch); 285 batch->Delete(serialized_url); 287 // Fail to apply batch to database wouldn't have critical effect, they'll be 289 tracker_db_->WriteBatch(batch.Pass()); 568 scoped_ptr<leveldb::WriteBatch> batch) { 572 leveldb::Status status = db_->Write(leveldb::WriteOptions(), batch.get());
|
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/ |
bwe_test.cc | 193 void QueuePackets(Packets* batch, int64_t end_of_batch_time_us) { 194 queue_.merge(*batch); 206 batch->merge(to_transfer);
|
/external/chromium_org/chrome/browser/prefs/ |
leveldb_pref_store.cc | 68 leveldb::WriteBatch batch; local 73 batch.Put(iter->first, iter->second); 79 batch.Delete(*iter); 82 leveldb::Status status = db_->Write(leveldb::WriteOptions(), &batch); 360 // Need to erase in case there's a set operation in the same batch that would 371 // Need to erase in case there's a delete operation in the same batch that
|
/external/chromium_org/net/data/ssl/scripts/ |
generate-cross-signed-certs.sh | 77 -batch \
|
/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; \
|