| /external/v8/src/snapshot/ |
| snapshot-common.cc | 28 const v8::StartupData* blob = isolate->snapshot_blob(); local 29 if (blob == nullptr) return false; 30 if (blob->data == nullptr) return false; 31 size_t num_contexts = static_cast<size_t>(ExtractNumContexts(blob)); 40 const v8::StartupData* blob = isolate->snapshot_blob(); local 41 Vector<const byte> startup_data = ExtractStartupData(blob); 60 const v8::StartupData* blob = isolate->snapshot_blob(); local 62 ExtractContextData(blob, static_cast<int>(context_index)); 119 PrintF("Snapshot blob consists of:\n%10d bytes for startup\n",
|
| /external/vboot_reference/futility/ |
| cmd_vbutil_firmware.c | 182 uint8_t *blob; local 201 /* Read blob */ 202 blob = ReadFile(infile, &blob_size); 203 if (!blob) { 216 key_block = (VbKeyBlockHeader *) blob; 246 preamble = (VbFirmwarePreambleHeader *) (blob + now);
|
| /external/wpa_supplicant_8/src/eap_peer/ |
| eap_fast_pac.c | 263 if (os_strncmp(pac_file, "blob://", 7) == 0) { 264 const struct wpa_config_blob *blob; local 265 blob = eap_get_config_blob(sm, pac_file + 7); 266 if (blob == NULL) { 267 wpa_printf(MSG_INFO, "EAP-FAST: No PAC blob '%s' - " 273 rc->pos = (char *) blob->data; 274 rc->end = (char *) blob->data + blob->len; 408 * @pac_file: Name of the PAC file/blob to load 538 if (os_strncmp(pac_file, "blob://", 7) == 0) 539 struct wpa_config_blob *blob; local 751 const struct wpa_config_blob *blob = NULL; local [all...] |
| eap_tls_common.c | 38 const struct wpa_config_blob *blob; local 40 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0) 43 blob = eap_get_config_blob(sm, *name + 7); 44 if (blob == NULL) { 45 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not " 51 *data = blob->data; 52 *data_len = blob->len; 173 * Use blob data, if available. Otherwise, leave reference to external [all...] |
| /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
| networkconfig.cpp | 342 char blob[32]; local 345 snprintf(blob, sizeof(blob), 346 "blob://fast-pac-%d", id); 347 setNetworkParam(id, "pac_file", blob, true);
|
| /frameworks/av/media/ndk/ |
| NdkImage.cpp | 289 // Blob is used for JPEG data, RAW10 and RAW12 is used for 10-bit and 12-bit raw data, 372 // Blob is used for JPEG/Raw opaque data. It is single plane and has 0 row stride and 393 struct camera3_jpeg_blob* blob = (struct camera3_jpeg_blob*)(header); local 394 if (blob->jpeg_blob_id == CAMERA3_JPEG_BLOB_ID) { 395 size = blob->jpeg_size; 403 * means that in certain rare situations a regular JPEG blob
|
| /frameworks/av/services/camera/libcameraservice/api1/client2/ |
| JpegProcessor.cpp | 378 struct camera2_jpeg_blob *blob = (struct camera2_jpeg_blob*)(header); local 379 if (blob->jpeg_blob_id == CAMERA2_JPEG_BLOB_ID) { 380 size = blob->jpeg_size;
|
| /frameworks/base/core/jni/ |
| android_os_HwBlob.cpp | 162 status_t JHwBlob::putBlob(size_t offset, const sp<JHwBlob> &blob) { 167 info->mBlob = blob; 169 const void *data = blob->data(); 271 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); \ 274 status_t err = blob->read(offset, &x, sizeof(x)); \ 293 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); local 296 status_t err = blob->read(offset, &x, sizeof(x)); 308 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); local 311 status_t err = blob->getString(offset, &s); 338 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); 376 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); local 420 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); local 454 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); local 495 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); local 519 sp<JHwBlob> blob = JHwBlob::GetNativeContext(env, thiz); local [all...] |
| /hardware/google/av/media/sfplugin/tests/ |
| ReflectedParamUpdater_test.cpp | 58 uint8_t blob[8]; member in struct:android::__anon47166::C2CompositeStruct 67 C2FIELD(blob, "blob") 68 C2FIELD(flexBlob, "flex-blob") 255 msg.emplace("composite.blob", ABuffer::CreateAsCopy("buffer08", 8)); 256 msg.emplace("composite.flex-blob", ABuffer::CreateAsCopy("flex-buffer-14", 14)); 276 EXPECT_EQ(0, memcmp("\0\0\0\0\0\0\0\0", CastParam<C2CompositeInfo>(params[0])->m.blob, 8)); 284 EXPECT_EQ(0, memcmp("buffer08", CastParam<C2CompositeInfo>(params[0])->m.blob, 8)); 286 hexdump(CastParam<C2CompositeInfo>(params[0])->m.blob, 8, 0, &hex); 293 // test setting and zero extending shorter blob than allowe [all...] |
| /system/security/keystore/ |
| blob.cpp | 26 #include "blob.h" 116 ALOGD("Failed to decrypt blob; ciphertext or tag is likely corrupted"); 133 Blob::Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength, 138 ALOGW("Provided blob length too large"); 160 Blob::Blob(blobv3 b) { 164 Blob::Blob() { 168 bool Blob::isEncrypted() const 291 blobv2& blob = reinterpret_cast<blobv2&>(mBlob); local [all...] |
| /system/tpm/attestation/server/ |
| pkcs11_key_store_test.cc | 311 std::string blob; local 312 EXPECT_FALSE(key_store.Read(kDefaultUser, "test", &blob)); 313 EXPECT_FALSE(key_store.Write(kDefaultUser, "test", blob)); 314 EXPECT_FALSE(key_store.Read("", "test", &blob)); 315 EXPECT_FALSE(key_store.Write("", "test", blob)); 322 std::string blob; local 323 EXPECT_FALSE(key_store.Read(kDefaultUser, "test", &blob)); 325 EXPECT_TRUE(key_store.Read(kDefaultUser, "test", &blob)); 326 EXPECT_EQ("test_data", blob); 328 EXPECT_FALSE(key_store.Read(kDefaultUser, "test2", &blob)); 347 std::string blob; local 375 std::string blob; local 387 std::string blob; local 397 std::string blob; local 407 std::string blob; local 428 std::string blob; local 451 std::string blob; local 560 std::string blob; local [all...] |
| /cts/tests/tests/media/libaudiojni/ |
| audio-record-native.cpp | 20 #include "Blob.h" 305 std::shared_ptr<Blob> blob; local 330 blob = std::make_shared<Blob>(buffer, size); 331 mReadBlob = blob; 335 // success then the blob is ours with valid data otherwise a flush has occurred 337 copied += blob->mOffset; 362 auto b = std::make_shared<Blob>(mBufferSize); 428 std::shared_ptr<Blob> mReadBlob [all...] |
| /external/ImageMagick/MagickCore/ |
| locale.c | 44 #include "MagickCore/blob.h" 856 *blob; 858 blob=(char *) NTResourceToBlob(filename); 859 if (blob != (char *) NULL) 862 SetStringInfoLength(xml,strlen(blob)+1); 863 SetStringInfoDatum(xml,(const unsigned char *) blob); 864 blob=(char *) RelinquishMagickMemory(blob); 841 *blob; local [all...] |
| memory.c | 58 #include "MagickCore/blob.h" 59 #include "MagickCore/blob-private.h" 144 *blob; 592 memory_info->blob=AcquireAlignedMemory(1,extent); 593 if (memory_info->blob != NULL) 605 memory_info->blob=MapBlob(-1,IOMode,0,extent); 606 if (memory_info->blob != NULL) 631 memory_info->blob=MapBlob(file,IOMode,0,extent); 632 if (memory_info->blob != NULL) 650 if (memory_info->blob == NULL 141 *blob; member in struct:_MemoryInfo [all...] |
| /external/ImageMagick/coders/ |
| pattern.c | 44 #include "MagickCore/blob.h" 45 #include "MagickCore/blob-private.h" 851 *blob; member in struct:_PatternInfo 952 *blob; local [all...] |
| /external/harfbuzz_ng/src/ |
| hb-ot-kern-table.hh | 363 blob = Sanitizer<kern>::sanitize (face->reference_table (HB_OT_TAG_kern)); 364 table = Sanitizer<kern>::lock_instance (blob); 365 table_length = hb_blob_get_length (blob); 369 hb_blob_destroy (blob); 376 hb_blob_t *blob; member in struct:OT::kern::accelerator_t
|
| /external/nos/host/android/hals/keymaster/ |
| KeymasterDevice.cpp | 401 hidl_vec<uint8_t> blob; local 405 _hidl_cb(ErrorCode::INVALID_ARGUMENT, blob, characteristics); 413 blob.setToExternal( 415 const_cast<char*>(response.blob().blob().data())), 416 response.blob().blob().size(), false); 423 blob, characteristics); local 476 hidl_vec<uint8_t> blob; local 477 blob.setToExternal 607 hidl_vec<uint8_t> blob; local 621 _hidl_cb(translate_error_code(response.error_code()), blob); local 935 hidl_vec<uint8_t> blob; local [all...] |
| /external/skia/src/gpu/ops/ |
| GrAtlasTextOp.cpp | 288 Blob* blob = args.fBlob; local 290 resourceProvider, blob, args.fRun, args.fSubRun, args.fViewMatrix, args.fX, args.fY, 296 // Copy regenerated vertices from the blob to our vertex buffer. 307 // than during blob vertex generation time in the blob as handling successive 431 that->fGeoData.get()[i].fBlob = (Blob*)0x1;
|
| /external/skqp/src/gpu/ops/ |
| GrAtlasTextOp.cpp | 263 Blob* blob = args.fBlob; local 265 blob, args.fRun, args.fSubRun, args.fViewMatrix, args.fX, args.fY, args.fColor, 270 // Copy regenerated vertices from the blob to our vertex buffer. 281 // than during blob vertex generation time in the blob as handling successive 399 that->fGeoData.get()[i].fBlob = (Blob*)0x1;
|
| /external/skqp/src/gpu/text/ |
| GrStencilAndCoverTextContext.cpp | 117 const SkTextBlob* blob, 123 SkTextBlobRunIterator it(blob); 175 const TextBlob& blob = this->findOrCreateTextBlob(skBlob, skPaint); local 177 TextBlob::Iter iter(blob); 201 // The font-related parameters are baked into the text blob and will override this skPaint, so 209 TextBlob* blob = new TextBlob(skBlob->uniqueID(), skBlob, skPaint); local 210 this->purgeToFit(*blob); 211 fBlobIdCache.set(skBlob->uniqueID(), blob); 212 fLRUList.addToTail(blob); 213 fCacheSize += blob->cpuMemorySize() 226 TextBlob* blob = new TextBlob(key, skBlob, skPaint); local [all...] |
| /external/wpa_supplicant_8/wpa_supplicant/ |
| config_file.c | 287 struct wpa_config_blob *blob; local 293 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'", 306 "blob", *line); 316 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated " 322 blob = os_zalloc(sizeof(*blob)); 323 if (blob == NULL) { 327 blob->name = os_strdup(name); 328 blob->data = base64_decode(encoded, encoded_len, &blob->len) 344 struct wpa_config_blob *blob; local 1506 struct wpa_config_blob *blob; local [all...] |
| config_winreg.c | 52 struct wpa_config_blob *blob; local 93 wpa_printf(MSG_MSGDUMP, "blob %d: field='%s' len %d", 96 blob = os_zalloc(sizeof(*blob)); 97 if (blob == NULL) { 101 blob->name = os_strdup((char *) name); 102 blob->data = os_memdup(data, datalen); 103 if (blob->name == NULL || blob->data == NULL) { 104 wpa_config_free_blob(blob); 992 struct wpa_config_blob *blob; local [all...] |
| /external/wpa_supplicant_8/wpa_supplicant/dbus/ |
| dbus_old_handlers.c | 1255 struct wpa_config_blob *blob; local [all...] |
| /frameworks/av/camera/ |
| CameraMetadata.cpp | 476 // Special case: zero blob size means zero sized (NULL) metadata. 483 ALOGE("%s: metadata blob is malformed, blobSize(%zu) should be larger than alignment(%zu)", 490 // NOTE: this doesn't make sense to me. shouldn't the blob 493 ReadableBlob blob; local 494 // arg1 = metadata (blob) 496 if ((err = data.readBlob(blobSize, &blob)) != OK) { 497 ALOGE("%s: Failed to read metadata blob (sized %zu). Possible " 503 // arg2 = offset (blob) 504 // Must be after blob since we don't know offset until after writeBlob. 519 const uintptr_t metadataStart = reinterpret_cast<uintptr_t>(blob.data()) + offset 611 WritableBlob blob; local [all...] |
| /frameworks/av/media/libmediaextractor/ |
| MetaDataBase.cpp | 475 android::Parcel::WritableBlob blob; local 480 ret = parcel.writeBlob(size, false, &blob); 484 memcpy(blob.data(), data, size); 485 blob.release(); 510 // copy data from Blob, which may be inline in Parcel storage, 513 android::Parcel::ReadableBlob blob; local 514 ret = parcel.readBlob(size, &blob); 518 setData(key, type, blob.data(), size); 519 blob.release();
|