/external/chromium_org/content/browser/dom_storage/ |
session_storage_database.h | 114 leveldb::WriteBatch* batch); 126 leveldb::WriteBatch* batch); 131 leveldb::WriteBatch* batch); 148 leveldb::WriteBatch* batch); 159 leveldb::WriteBatch* batch); 163 leveldb::WriteBatch* batch); 168 leveldb::WriteBatch* batch); 171 bool ClearMap(const std::string& map_id, leveldb::WriteBatch* batch); 180 leveldb::WriteBatch* batch);
|
/external/chromium_org/content/browser/service_worker/ |
service_worker_database.cc | 125 leveldb::WriteBatch* batch) { 126 DCHECK(batch); 142 batch->Put(CreateRegistrationKey(data.registration_id(), origin), value); 148 leveldb::WriteBatch* batch) { 149 DCHECK(batch); 159 batch->Put(CreateResourceRecordKey(version_id, input.resource_id), value); 163 leveldb::WriteBatch* batch) { 165 batch->Put(CreateUniqueOriginKey(origin), ""); 169 leveldb::WriteBatch* batch) { 171 batch->Put(CreateResourceIdKey(kPurgeableResIdKeyPrefix, resource_id), "") 567 leveldb::WriteBatch batch; local 592 leveldb::WriteBatch batch; local 679 leveldb::WriteBatch batch; local 956 leveldb::WriteBatch batch; local 989 leveldb::WriteBatch batch; local [all...] |
service_worker_database.h | 239 leveldb::WriteBatch* batch); 256 leveldb::WriteBatch* batch); 267 leveldb::WriteBatch* batch); 273 // Writes a batch into the database. 276 Status WriteBatch(leveldb::WriteBatch* batch); 282 leveldb::WriteBatch* batch); 285 leveldb::WriteBatch* batch); 288 leveldb::WriteBatch* batch);
|
/frameworks/native/services/sensorservice/ |
SensorInterface.cpp | 50 status_t HardwareSensor::batch(void* ident, int /*handle*/, int flags, function in class:android::HardwareSensor 52 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,
|
/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/wpa_supplicant_8/hs20/server/ca/ |
setup.sh | 26 $OPENSSL req -config openssl.cnf.tmp -batch -new -newkey rsa:4096 -keyout rootCA/private/cakey.pem -out rootCA/careq.pem || fail "Failed to generate Root CA private key" 28 $OPENSSL ca -config openssl.cnf.tmp -md sha256 -create_serial -out rootCA/cacert.pem -days 10957 -batch -keyfile rootCA/private/cakey.pem -passin pass:$PASS -selfsign -extensions v3_ca -outdir rootCA/newcerts -infiles rootCA/careq.pem || fail "Failed to sign Root CA certificate" 45 $OPENSSL req -config openssl.cnf.tmp -batch -new -newkey rsa:2048 -keyout demoCA/private/cakey.pem -out demoCA/careq.pem || fail "Failed to generate Intermediate CA private key" 47 $OPENSSL ca -config openssl.cnf.tmp -md sha256 -create_serial -out demoCA/cacert.pem -days 3652 -batch -keyfile rootCA/private/cakey.pem -cert rootCA/cacert.pem -passin pass:$PASS -extensions v3_ca -infiles demoCA/careq.pem || fail "Failed to sign Intermediate CA certificate" 60 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out ocsp.csr -keyout ocsp.key -extensions v3_OCSP 61 $OPENSSL ca -config $PWD/openssl.cnf.tmp -batch -md sha256 -keyfile demoCA/private/cakey.pem -passin pass:$PASS -in ocsp.csr -out ocsp.pem -days 730 -extensions v3_OCSP 68 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out server-revoked.csr -keyout server-revoked.key 69 $OPENSSL ca -config $PWD/openssl.cnf.tmp -batch -md sha256 -in server-revoked.csr -out server-revoked.pem -key $PASS -days 730 -extensions ext_server 77 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -new -newkey rsa:2048 -nodes -out server-client.csr -keyout server-client.key 78 $OPENSSL ca -config $PWD/openssl.cnf.tmp -batch -md sha256 -in server-client.csr -out server-client.pem -key $PASS -days 730 -extensions ext_clien [all...] |
/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/chromium_org/extensions/browser/api/storage/ |
storage_api_unittest.cc | 113 leveldb::WriteBatch batch; local 114 batch.Put(kKey, "[{(.*+\"\'\\"); 115 EXPECT_TRUE(leveldb_store->WriteToDbForTest(&batch));
|
/external/chromium_org/extensions/browser/value_store/ |
leveldb_value_store.h | 53 bool WriteToDbForTest(leveldb::WriteBatch* batch); 71 leveldb::WriteBatch* batch, 74 // Commits the changes in |batch| to the database. 75 scoped_ptr<ValueStore::Error> WriteToDb(leveldb::WriteBatch* batch);
|
leveldb_value_store.cc | 179 leveldb::WriteBatch batch; 182 AddToBatch(options, key, value, &batch, changes.get()); 186 scoped_ptr<Error> write_error = WriteToDb(&batch); 199 leveldb::WriteBatch batch; 205 AddToBatch(options, it.key(), it.value(), &batch, changes.get()); 210 scoped_ptr<Error> write_error = WriteToDb(&batch); 228 leveldb::WriteBatch batch; 241 batch.Delete(*it); 245 leveldb::Status status = db_->Write(leveldb::WriteOptions(), &batch); 305 leveldb::WriteBatch batch; local [all...] |
leveldb_value_store_unittest.cc | 75 leveldb::WriteBatch batch; local 76 batch.Put(kCorruptKey, "[{(.*+\"\'\\"); 77 ASSERT_TRUE(store()->WriteToDbForTest(&batch)); 118 leveldb::WriteBatch batch; local 119 batch.Put(kCorruptKey1, kCorruptValue); 120 batch.Put(kCorruptKey2, kCorruptValue); 121 ASSERT_TRUE(store()->WriteToDbForTest(&batch));
|
/external/chromium_org/ui/events/gesture_detection/ |
motion_event_buffer.cc | 59 size_t CountSamplesNoLaterThan(const MotionEventVector& batch, 62 while (count < batch.size() && batch[count]->GetEventTime() <= time) 67 MotionEventVector ConsumeSamplesNoLaterThan(MotionEventVector* batch, 69 DCHECK(batch); 70 size_t count = CountSamplesNoLaterThan(*batch, time); 71 DCHECK_GE(batch->size(), count); 75 if (count == batch->size()) 76 return batch->Pass(); 81 unconsumed_batch.begin(), batch->begin() + count, batch->end()) [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_quarantine.h | 33 void *batch[kSize]; member in struct:__sanitizer::QuarantineBatch 101 PREFETCH(b->batch[i]); 103 PREFETCH(b->batch[i + kPrefetch]); 104 cb.Recycle((Node*)b->batch[i]); 130 size += sizeof(QuarantineBatch); // Count the batch in Quarantine size. 133 b->batch[b->count++] = ptr;
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_dense_alloc.h | 106 T *batch = (T*)MmapOrDie(kL2Size * sizeof(T), "DenseSlabAllocator"); local 110 new(batch + i) T(); 111 *(IndexT*)(batch + i) = i + 1 + fillpos_ * kL2Size; 113 *(IndexT*)(batch + kL2Size - 1) = 0; 115 map_[fillpos_++] = batch;
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
resource_metadata_storage.cc | 300 leveldb::WriteBatch batch; 303 batch.Delete(it->key()); 308 return resource_map->Write(leveldb::WriteOptions(), &batch).ok(); 316 leveldb::WriteBatch batch; local 319 batch.Delete(it->key()); 335 batch.Put(GetIdEntryKey(id_new), id_new); 349 batch.Put(id_new, serialized_entry); 359 batch.Put(GetHeaderDBKey(), serialized_header); 361 return resource_map->Write(leveldb::WriteOptions(), &batch).ok(); 377 leveldb::WriteBatch batch; [all...] |
/libcore/support/src/test/java/tests/resources/x509/ |
create.sh | 25 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch > /tmp/cert-rsa-req.pem 40 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions keyUsage_extraLong_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-keyUsage-extraLong.der 42 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions extendedKeyUsage_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-extendedKeyUsage.der 44 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions ca_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-ca.der 46 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions userWithPathLen_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-userWithPathLen.der 48 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions caWithPathLen_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-caWithPathLen.der 50 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_other_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-alt-other.der 52 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_email_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-alt-email.der 54 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dns_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-alt-dns.der 56 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dirname_cert -req -signkey ${DIR}/privk (…) [all...] |
/external/chromium_org/storage/browser/fileapi/ |
sandbox_directory_database.cc | 555 leveldb::WriteBatch batch; local 556 if (!AddFileInfoHelper(info, temp_id, &batch)) 559 batch.Put(LastFileIdKey(), base::Int64ToString(temp_id)); 560 status = db_->Write(leveldb::WriteOptions(), &batch); 572 leveldb::WriteBatch batch; 573 if (!RemoveFileInfoHelper(file_id, &batch)) 575 leveldb::Status status = db_->Write(leveldb::WriteOptions(), &batch); 605 leveldb::WriteBatch batch; local 606 if (!RemoveFileInfoHelper(file_id, &batch) || 607 !AddFileInfoHelper(new_info, file_id, &batch)) 846 leveldb::WriteBatch batch; local [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/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...] |
/device/htc/flounder/sensor_hub/libsensors/ |
SensorBase.h | 71 virtual int batch(int handle, int flags, int64_t period_ns, int64_t timeout) = 0;
|