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

12 3 4 5 6 7 8 91011>>

  /hardware/libhardware/include/hardware/
keymaster_defs.h 294 keymaster_blob_t blob; /* KM_BIGNUM and KM_BYTES*/ member in union:__anon31378::__anon31379
496 param.blob.data = (uint8_t*)bytes;
497 param.blob.data_length = bytes_len;
543 if (a->blob.data_length != 0 && b->blob.data_length == 0)
545 if (a->blob.data_length == 0 && b->blob.data_length == 0)
547 if (a->blob.data_length == 0 && b->blob.data_length > 0)
550 retval = memcmp(a->blob.data, b->blob.data, a->blob.data_length < b->blob.data_lengt
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/spec/gl-matrix/
worker-spec.js 23 var blob = new Blob([
30 var worker = new Worker(URL.createObjectURL(blob));
  /external/skia/src/core/
SkTextBlobRunIterator.h 13 * Iterate through all of the text runs of the text blob. For example:
14 * for (SkTextBlobRunIterator it(blob); !it.done(); it.next()) {
20 SkTextBlobRunIterator(const SkTextBlob* blob);
  /system/update_engine/payload_generator/
annotated_operation.cc 39 bool AnnotatedOperation::SetOperationBlob(const brillo::Blob& blob,
41 if (blob.empty()) {
46 off_t data_offset = blob_file->StoreBlob(blob);
49 op.set_data_length(blob.size());
annotated_operation.h 38 // Writes |blob| to the end of |blob_file|. It sets the data_offset and
39 // data_length in AnnotatedOperation to match the offset and size of |blob|
41 bool SetOperationBlob(const brillo::Blob& blob, BlobFileWriter* blob_file);
block_mapping.cc 34 size_t HashValue(const brillo::Blob& blob) {
36 return hash_fn(string(blob.begin(), blob.end()));
43 BlockMapping::BlockId BlockMapping::AddBlock(const brillo::Blob& block_data) {
48 brillo::Blob blob(block_size_);
50 if (!utils::PReadAll(fd, blob.data(), block_size_, byte_offset, &bytes_read))
54 return AddBlock(fd, byte_offset, blob);
73 const brillo::Blob& block_data)
    [all...]
  /external/harfbuzz_ng/src/
test-buffer-serialize.cc 48 hb_blob_t *blob = NULL; local
55 /* Create the blob */
84 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
87 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
88 hb_blob_destroy (blob);
89 blob = NULL;
hb-face.cc 107 hb_blob_t *blob; member in struct:hb_face_for_data_closure_t
112 _hb_face_for_data_closure_create (hb_blob_t *blob, unsigned int index)
120 closure->blob = blob;
129 hb_blob_destroy (closure->blob);
139 return hb_blob_reference (data->blob);
141 const OT::OpenTypeFontFile &ot_file = *OT::Sanitizer<OT::OpenTypeFontFile>::lock_instance (data->blob);
146 hb_blob_t *blob = hb_blob_create_sub_blob (data->blob, table.offset, table.length); local
148 return blob;
    [all...]
test.cc 49 hb_blob_t *blob = NULL; local
56 /* Create the blob */
85 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
88 printf ("Opened font file %s: %u bytes long\n", argv[1], hb_blob_get_length (blob));
91 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
92 hb_blob_destroy (blob);
93 blob = NULL;
  /system/keymaster/
keymaster0_engine.cpp 150 bool Keymaster0Engine::DeleteKey(const KeymasterKeyBlob& blob) const {
153 return (keymaster0_device_->delete_keypair(keymaster0_device_, blob.key_material,
154 blob.key_material_size) == 0);
176 inline keymaster_key_blob_t* duplicate_blob(const keymaster_key_blob_t& blob) {
177 return duplicate_blob(blob.key_material, blob.key_material_size);
180 RSA* Keymaster0Engine::BlobToRsaKey(const KeymasterKeyBlob& blob) const {
181 // Create new RSA key (with engine methods) and insert blob
186 keymaster_key_blob_t* blob_copy = duplicate_blob(blob);
191 unique_ptr<EVP_PKEY, EVP_PKEY_Delete> pkey(GetKeymaster0PublicKey(blob));
243 keymaster_key_blob_t* blob = reinterpret_cast<keymaster_key_blob_t*>(*from_d); local
255 keymaster_key_blob_t* blob = reinterpret_cast<keymaster_key_blob_t*>(ptr); local
    [all...]
keymaster1_engine.h 55 keymaster_error_t DeleteKey(const KeymasterKeyBlob& blob) const;
59 KeyData(const KeymasterKeyBlob& blob, const AuthorizationSet& params)
60 : op_handle(0), begin_params(params), key_material(blob), error(KM_ERROR_OK),
71 RSA* BuildRsaKey(const KeymasterKeyBlob& blob, const AuthorizationSet& additional_params,
73 EC_KEY* BuildEcKey(const KeymasterKeyBlob& blob, const AuthorizationSet& additional_params,
82 EVP_PKEY* GetKeymaster1PublicKey(const KeymasterKeyBlob& blob,
keymaster0_engine.h 53 bool DeleteKey(const KeymasterKeyBlob& blob) const;
56 RSA* BlobToRsaKey(const KeymasterKeyBlob& blob) const;
57 EC_KEY* BlobToEcKey(const KeymasterKeyBlob& blob) const;
64 EVP_PKEY* GetKeymaster0PublicKey(const KeymasterKeyBlob& blob) const;
  /system/tpm/attestation/server/
pkcs11_key_store_test.cc 316 std::string blob; local
317 EXPECT_FALSE(key_store.Read(kDefaultUser, "test", &blob));
318 EXPECT_FALSE(key_store.Write(kDefaultUser, "test", blob));
319 EXPECT_FALSE(key_store.Read("", "test", &blob));
320 EXPECT_FALSE(key_store.Write("", "test", blob));
327 std::string blob; local
328 EXPECT_FALSE(key_store.Read(kDefaultUser, "test", &blob));
330 EXPECT_TRUE(key_store.Read(kDefaultUser, "test", &blob));
331 EXPECT_EQ("test_data", blob);
333 EXPECT_FALSE(key_store.Read(kDefaultUser, "test2", &blob));
352 std::string blob; local
380 std::string blob; local
392 std::string blob; local
402 std::string blob; local
412 std::string blob; local
433 std::string blob; local
458 std::string blob; local
569 std::string blob; local
    [all...]
  /frameworks/minikin/libs/minikin/
MinikinInternal.h 55 HbBlob(hb_blob_t* blob) : mBlob(blob) {
  /frameworks/opt/net/wifi/tests/wifitests/src/android/net/wifi/
FakeKeys.java 56 private static X509Certificate loadCertificate(String blob) {
59 InputStream stream = new ByteArrayInputStream(blob.getBytes(StandardCharsets.UTF_8));
  /packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
VehiclePropConfigsParcelable.java 33 byte[] blob = in.readBlob();
35 configs = VehiclePropConfigs.parseFrom(blob);
VehiclePropValueParcelable.java 34 byte[] blob = in.readBlob();
36 value = VehiclePropValue.parseFrom(blob);
VehiclePropValuesParcelable.java 26 * Have separate Parcelable for {@link VehiclePropValues} to use only one Blob.
27 * Handling this as array of single entry can lead into having multiple Blob,
28 * which can increase binder transfer size a lot (as each data can be below blob start size),
29 * or can add lots of Blob, which brings lots of performance issue.
40 byte[] blob = in.readBlob();
42 values = VehiclePropValues.parseFrom(blob);
  /external/libbrillo/brillo/
data_encoding.h 55 BRILLO_EXPORT bool Base64Decode(const std::string& input, brillo::Blob* output);
57 // Helper wrappers to use std::string and brillo::Blob as binary data
59 inline std::string Base64Encode(const brillo::Blob& input) {
62 inline std::string Base64EncodeWrapLines(const brillo::Blob& input) {
72 brillo::Blob blob; local
73 if (!Base64Decode(input, &blob))
75 *output = std::string{blob.begin(), blob.end()};
  /external/libweave/src/
data_encoding.h 67 std::vector<uint8_t> blob; local
68 if (!Base64Decode(input, &blob))
70 *output = std::string{blob.begin(), blob.end()};
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
FolderList.java 69 public static FolderList fromBlob(byte[] blob) {
70 if (blob == null) {
75 p.unmarshall(blob, 0, blob.length);
  /external/skia/src/gpu/text/
GrAtlasTextContext.cpp 59 bool GrAtlasTextContext::HasLCD(const SkTextBlob* blob) {
60 SkTextBlobRunIterator it(blob);
72 const SkSurfaceProps& props, const SkTextBlob* blob,
92 bool hasLCD = HasLCD(blob);
105 key.fUniqueID = blob->uniqueID();
121 // We have to remake the blob because changes may invalidate our masks.
125 cacheBlob.reset(SkRef(cache->createCachedBlob(blob, key, blurRec, skPaint)));
129 blob, x, y, drawFilter);
136 GrTextBlobCache::BlobGlyphCount(&glyphCount, &runCount, blob);
142 blob, x, y, drawFilter)
263 GrAtlasTextBlob* blob = blobCache->createBlob(glyphCount, 1); local
287 GrAtlasTextBlob* blob = blobCache->createBlob(glyphCount, 1); local
    [all...]
  /external/libvpx/libvpx/test/android/
scrape_gtest_log.py 41 blob = sys.stdin.read()
43 re.findall(r'{([^}]*.?)}', blob)) + ']'
44 print blob
  /external/skia/gm/
textblobgeometrychange.cpp 43 SkAutoTUnref<const SkTextBlob> blob(builder.build());
56 canvas->drawTextBlob(blob.get(), 10, 50, paint);
61 c->drawTextBlob(blob.get(), 10, 150, paint);
textblobuseaftergpufree.cpp 50 SkAutoTUnref<const SkTextBlob> blob(builder.build());
57 canvas->drawTextBlob(blob.get(), 10, 50, paint);
61 canvas->drawTextBlob(blob.get(), 10, 150, paint);

Completed in 1465 milliseconds

12 3 4 5 6 7 8 91011>>