HomeSort by relevance Sort by last modified time
    Searched refs:batch (Results 26 - 50 of 223) sorted by null

12 3 4 5 6 7 8 9

  /external/chromium_org/content/browser/dom_storage/
session_storage_database.h 112 leveldb::WriteBatch* batch);
124 leveldb::WriteBatch* batch);
129 leveldb::WriteBatch* batch);
146 leveldb::WriteBatch* batch);
157 leveldb::WriteBatch* batch);
161 leveldb::WriteBatch* batch);
166 leveldb::WriteBatch* batch);
169 bool ClearMap(const std::string& map_id, leveldb::WriteBatch* batch);
178 leveldb::WriteBatch* batch);
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_database.cc 127 leveldb::WriteBatch* batch) {
131 batch->Put(kServiceMetadataKey, value);
134 void PutFileToBatch(const FileMetadata& file, leveldb::WriteBatch* batch) {
138 batch->Put(kFileMetadataKeyPrefix + file.file_id(), value);
141 void PutTrackerToBatch(const FileTracker& tracker, leveldb::WriteBatch* batch) {
145 batch->Put(kFileTrackerKeyPrefix + base::Int64ToString(tracker.tracker_id()),
150 leveldb::WriteBatch* batch) {
151 batch->Delete(kFileMetadataKeyPrefix + file_id);
154 void PutTrackerDeletionToBatch(int64 tracker_id, leveldb::WriteBatch* batch) {
155 batch->Delete(kFileTrackerKeyPrefix + base::Int64ToString(tracker_id))
    [all...]
metadata_db_migration_util_unittest.cc 120 leveldb::WriteBatch batch; local
121 batch.Put(kChangeStampKey, "1");
122 batch.Put(kSyncRootDirectoryKey, kSyncRootResourceId);
136 batch.Put(kDriveMetadataKeyPrefix + serialized_url, metadata_string);
138 // Setup batch sync origin and incremental sync origin.
139 batch.Put(kDriveBatchSyncOriginKeyPrefix + kOrigin1.spec(), kResourceId1);
140 batch.Put(kDriveIncrementalSyncOriginKeyPrefix + kOrigin2.spec(),
143 status = db->Write(leveldb::WriteOptions(), &batch);
180 // Verify the batch sync origin.
229 leveldb::WriteBatch batch; local
    [all...]
drive_metadata_store.cc 336 leveldb::WriteBatch* batch) {
343 batch->Delete(OriginAndPathToMetadataKey(origin, itr->first));
419 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch);
420 batch->Put(kChangeStampKey, base::Int64ToString(largest_changestamp));
421 return WriteToDB(batch.Pass(), callback);
455 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch);
456 batch->Put(FileSystemURLToMetadataKey(url), value);
457 WriteToDB(batch.Pass(), callback);
473 scoped_ptr<leveldb::WriteBatch> batch(new leveldb::WriteBatch);
474 batch->Delete(FileSystemURLToMetadataKey(url))
    [all...]
  /system/core/fastboot/
genkey.sh 16 -batch -days 10000
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_winsys.h 100 * @batch
104 boolean (*validate_buffers)(struct i915_winsys_batchbuffer *batch,
112 * @batch
119 int (*batchbuffer_reloc)(struct i915_winsys_batchbuffer *batch,
127 void (*batchbuffer_flush)(struct i915_winsys_batchbuffer *batch,
133 void (*batchbuffer_destroy)(struct i915_winsys_batchbuffer *batch);
i915_blit.c 52 if(!i915_winsys_validate_buffers(i915->batch, &dst_buffer, 1)) {
54 assert(i915_winsys_validate_buffers(i915->batch, &dst_buffer, 1));
113 if(!i915_winsys_validate_buffers(i915->batch, buffers, 2)) {
115 assert(i915_winsys_validate_buffers(i915->batch, buffers, 2));
  /external/mesa3d/src/gallium/drivers/i915/
i915_winsys.h 100 * @batch
104 boolean (*validate_buffers)(struct i915_winsys_batchbuffer *batch,
112 * @batch
119 int (*batchbuffer_reloc)(struct i915_winsys_batchbuffer *batch,
127 void (*batchbuffer_flush)(struct i915_winsys_batchbuffer *batch,
133 void (*batchbuffer_destroy)(struct i915_winsys_batchbuffer *batch);
i915_blit.c 52 if(!i915_winsys_validate_buffers(i915->batch, &dst_buffer, 1)) {
54 assert(i915_winsys_validate_buffers(i915->batch, &dst_buffer, 1));
113 if(!i915_winsys_validate_buffers(i915->batch, buffers, 2)) {
115 assert(i915_winsys_validate_buffers(i915->batch, buffers, 2));
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCStatement.java 12 private ArrayList<String> batch; field in class:JDBCStatement
18 this.batch = null;
177 if (batch == null) {
178 batch = new ArrayList<String>(1);
180 batch.add(sql);
184 if (batch == null) {
187 int[] ret = new int[batch.size()];
194 execute((String) batch.get(i));
201 throw new BatchUpdateException("batch failed", ret);
207 if (batch != null)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
BatchNode.java 57 * usage is like any other node except you have to call the {@link #batch()} method once all geoms have been attached to the sub scene graph and theire material set
62 * Sub geoms can be added after the batch() method has been called but won't be batched and will be rendered as normal geometries.
63 * To integrate them in the batch you have to call the batch() method again on the batchNode.
66 * TODO more automagic (batch when needed in the updateLigicalState)
75 protected Map<Material, Batch> batches = new HashMap<Material, Batch>();
120 for (Batch batch : batches.values()) {
121 if (batch.needMeshUpdate)
144 Batch batch = batches.get(bg.getMaterial()); local
174 public void batch() { method in class:BatchNode
204 Batch batch = new Batch(); local
    [all...]
  /external/openssh/regress/
putty-transfer.sh 22 env HOME=$PWD ${PLINK} -load compression_$c -batch \
34 -batch -i putty.rsa$p 127.0.0.1 \
putty-kex.sh 20 env HOME=$PWD ${PLINK} -load kex_$k -batch -i putty.rsa2 \
putty-ciphers.sh 21 env HOME=$PWD ${PLINK} -load cipher_$c -batch -i putty.rsa2 \
  /external/chromium_org/build/
gdb-add-index 42 gdb -batch "$file" -ex "save gdb-index $DIRECTORY" -ex "quit"
  /external/chromium_org/chrome/browser/value_store/
leveldb_value_store.h 70 leveldb::WriteBatch* batch,
73 // Commits the changes in |batch| to the database, returning the error message
75 std::string WriteToDb(leveldb::WriteBatch* batch);
leveldb_value_store.cc 214 leveldb::WriteBatch batch;
216 error = AddToBatch(options, key, value, &batch, changes.get());
220 error = WriteToDb(&batch);
234 leveldb::WriteBatch batch;
238 error = AddToBatch(options, it.key(), it.value(), &batch, changes.get());
246 error = WriteToDb(&batch);
265 leveldb::WriteBatch batch;
280 batch.Delete(*it);
284 leveldb::Status status = db_->Write(leveldb::WriteOptions(), &batch);
300 leveldb::WriteBatch batch; local
    [all...]
  /frameworks/native/services/sensorservice/
SensorInterface.cpp 53 status_t HardwareSensor::batch(void* ident, int handle, int flags, function in class:android::HardwareSensor
55 return mSensorDevice.batch(ident, mSensor.getHandle(), flags, samplingPeriodNs,
SensorInterface.h 43 virtual status_t batch(void* ident, int handle, int flags, int64_t samplingPeriodNs, function in class:android::SensorInterface
76 virtual status_t batch(void* ident, int handle, int flags, int64_t samplingPeriodNs,
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_quarantine.h 33 void *batch[kSize]; member in struct:__sanitizer::QuarantineBatch
99 PREFETCH(b->batch[i]);
101 PREFETCH(b->batch[i + kPrefetch]);
102 cb.Recycle((Node*)b->batch[i]);
129 b->batch[b->count++] = ptr;
  /libcore/support/src/test/java/tests/resources/x509/
create.sh 21 openssl req -config ${DIR}/default.cnf -new -nodes -batch > /tmp/cert-rsa-req.pem
36 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions keyUsage_extraLong_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-keyUsage-extraLong.der
38 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions extendedKeyUsage_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-extendedKeyUsage.der
40 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions ca_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-ca.der
42 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions userWithPathLen_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-userWithPathLen.der
44 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions caWithPathLen_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-caWithPathLen.der
46 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_other_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-alt-other.der
48 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_email_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-alt-email.der
50 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dns_cert -req -signkey /tmp/privkey.pem -outform d > ${DIR}/cert-alt-dns.der
52 openssl req -config ${DIR}/default.cnf -new -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dirname_cert -req -signkey /tmp/privkey (…)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state_dump.c 43 uint32_t *data = intel->batch.bo->virtual + offset;
84 struct brw_vs_unit_state *vs = intel->batch.bo->virtual + offset;
100 struct brw_gs_unit_state *gs = intel->batch.bo->virtual + offset;
116 struct brw_clip_unit_state *clip = intel->batch.bo->virtual + offset;
136 struct brw_sf_unit_state *sf = intel->batch.bo->virtual + offset;
153 struct brw_wm_unit_state *wm = intel->batch.bo->virtual + offset;
180 uint32_t *surf = brw->intel.batch.bo->virtual + offset;
204 struct gen7_surface_state *surf = brw->intel.batch.bo->virtual + offset;
227 struct gen5_sampler_default_color *sdc = (intel->batch.bo->virtual +
242 struct brw_sampler_default_color *sdc = (intel->batch.bo->virtual
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
sandbox_directory_database.cc 550 leveldb::WriteBatch batch; local
551 if (!AddFileInfoHelper(info, temp_id, &batch))
554 batch.Put(LastFileIdKey(), base::Int64ToString(temp_id));
555 status = db_->Write(leveldb::WriteOptions(), &batch);
567 leveldb::WriteBatch batch;
568 if (!RemoveFileInfoHelper(file_id, &batch))
570 leveldb::Status status = db_->Write(leveldb::WriteOptions(), &batch);
600 leveldb::WriteBatch batch; local
601 if (!RemoveFileInfoHelper(file_id, &batch) ||
602 !AddFileInfoHelper(new_info, file_id, &batch))
821 leveldb::WriteBatch batch; local
    [all...]
sandbox_directory_database.h 112 const FileInfo& info, FileId file_id, leveldb::WriteBatch* batch);
113 bool RemoveFileInfoHelper(FileId file_id, leveldb::WriteBatch* batch);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_dump.c 43 uint32_t *data = intel->batch.bo->virtual + offset;
84 struct brw_vs_unit_state *vs = intel->batch.bo->virtual + offset;
100 struct brw_gs_unit_state *gs = intel->batch.bo->virtual + offset;
116 struct brw_clip_unit_state *clip = intel->batch.bo->virtual + offset;
136 struct brw_sf_unit_state *sf = intel->batch.bo->virtual + offset;
153 struct brw_wm_unit_state *wm = intel->batch.bo->virtual + offset;
180 uint32_t *surf = brw->intel.batch.bo->virtual + offset;
204 struct gen7_surface_state *surf = brw->intel.batch.bo->virtual + offset;
227 struct gen5_sampler_default_color *sdc = (intel->batch.bo->virtual +
242 struct brw_sampler_default_color *sdc = (intel->batch.bo->virtual
    [all...]

Completed in 5295 milliseconds

12 3 4 5 6 7 8 9