/external/google-breakpad/src/client/linux/crash_generation/ |
crash_generation_client.cc | 51 virtual bool RequestDump(const void* blob, size_t blob_size) { 58 iov.iov_base = const_cast<void*>(blob);
|
/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",
|
/system/keymaster/include/keymaster/key_blob_utils/ |
software_keyblobs.h | 42 keymaster_error_t ParseOldSoftkeymasterBlob(const KeymasterKeyBlob& blob, 47 keymaster_error_t ParseOcbAuthEncryptedBlob(const KeymasterKeyBlob& blob,
|
/system/keymaster/include/keymaster/legacy_support/ |
keymaster_passthrough_engine.h | 53 const KeymasterKeyBlob& blob, 57 virtual keymaster_error_t DeleteKey(const KeymasterKeyBlob& blob) const = 0;
|
/system/keymaster/contexts/ |
keymaster2_passthrough_context.cpp | 69 keymaster_error_t Keymaster2PassthroughContext::ParseKeyBlob(const KeymasterKeyBlob& blob, 83 auto rc = device_->get_key_characteristics(device_, &blob, clientIdPtr, applicationDataPtr, 103 KeymasterKeyBlob key_material = blob; 109 keymaster_error_t Keymaster2PassthroughContext::DeleteKey(const KeymasterKeyBlob& blob) const { 110 return device_->delete_key(device_, &blob);
|
/external/dtc/ |
flattree.c | 364 struct data blob = empty_data; local 376 die("Unknown device tree blob version %d\n", version); 396 "Warning: blob size %d >= minimum size %d\n", 415 * Assemble the blob: start with the header, add with alignment 419 blob = data_append_data(blob, &fdt, vi->hdr_size); 420 blob = data_append_align(blob, 8); 421 blob = data_merge(blob, reservebuf) 817 char *blob; local [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
DatabaseUtils_InsertHelperTest.java | 79 " blob_value BLOB, null_value TEXT);"); 119 byte[] blob = new byte[] { '1', '2', '3' }; 120 mInsertHelper.bind(mInsertHelper.getColumnIndex("blob_value"), blob); 136 MoreAsserts.assertEquals(blob, value); 153 values.put("blob_value", blob); 168 MoreAsserts.assertEquals(blob, value); 181 " blob_value BLOB, null_value TEXT);"); 215 byte[] blob = new byte[] { '1', '2', '3' }; 216 mInsertHelper.bind(mInsertHelper.getColumnIndex("blob_value"), blob); 232 MoreAsserts.assertEquals(blob, value) [all...] |
/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...] |
/system/keymaster/include/keymaster/ |
android_keymaster_messages.h | 305 void SetKeyMaterial(const keymaster_key_blob_t& blob) { 306 SetKeyMaterial(blob.key_material, blob.key_material_size); 336 void SetKeyMaterial(const keymaster_key_blob_t& blob) { 337 SetKeyMaterial(blob.key_material, blob.key_material_size); 459 void SetKeyMaterial(const keymaster_key_blob_t& blob) { 460 SetKeyMaterial(blob.key_material, blob.key_material_size); 481 void SetKeyMaterial(const keymaster_key_blob_t& blob) { [all...] |
/external/ImageMagick/MagickCore/ |
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...] |
/system/security/keystore/ |
legacy_keymaster_device_wrapper.cpp | 99 keymaster_param_blob(tag, &keyParams[i].blob[0], keyParams[i].blob.size()); 121 inline static keymaster_blob_t hidlVec2KmBlob(const hidl_vec<uint8_t>& blob) { 122 /* hidl unmarshals funny pointers if the the blob is empty */ 123 if (blob.size()) return {&blob[0], blob.size()}; 127 inline static keymaster_key_blob_t hidlVec2KmKeyBlob(const hidl_vec<uint8_t>& blob) { 128 /* hidl unmarshals funny pointers if the the blob is empty */ 129 if (blob.size()) return {&blob[0], blob.size()} [all...] |
/external/libdrm/radeon/ |
radeon_cs_gem.c | 344 bof_t *bcs, *blob, *array, *bo, *size, *handle, *device_id, *root; local 349 root = device_id = bcs = blob = array = bo = size = handle = NULL; 361 blob = bof_blob(csg->nrelocs * 16, csg->relocs); 362 if (blob == NULL) 364 if (bof_object_set(root, "reloc", blob)) 366 bof_decref(blob); 367 blob = NULL; 369 blob = bof_blob(cs->cdw * 4, cs->packets); 370 if (blob == NULL) 372 if (bof_object_set(root, "pm4", blob)) [all...] |
/external/nos/host/generic/nugget/proto/nugget/app/keymaster/ |
keymaster.proto | 36 * that a key-blob may be fully contained. 135 KeyBlob blob = 2; 141 KeyBlob blob = 1; 159 KeyBlob blob = 2; 166 KeyBlob blob = 2; 179 KeyBlob blob = 1; 213 KeyBlob blob = 1; 218 KeyBlob blob = 2; 223 KeyBlob blob = 1; 244 KeyBlob blob = 2 [all...] |
/hardware/google/av/codec2/hidl/1.0/utils/include/codec2/hidl/1.0/ |
types.h | 206 * Parses a params blob and returns C2Param pointers to its params. 208 * \param[in] blob parameter blob to parse 209 * \retval C2_OK if the full blob was parsed 214 const hidl_vec<uint8_t> &blob); 217 * Concatenates a list of C2Params into a params blob. 218 * \param[out] blob target blob 220 * \retval C2_OK if the blob was successfully created 221 * \retval C2_BAD_VALUE if the blob was not successful (this only happens if the parameters wer [all...] |
/system/nvram/messages/tests/ |
io_test.cpp | 320 Blob blob; 321 ASSERT_TRUE(blob.Resize(1024 * 1024)); 322 BlobOutputStreamBuffer buf(&blob); 331 EXPECT_EQ(16U, blob.size()); 332 for (size_t i = 0; i < blob.size(); ++i) { 333 EXPECT_EQ(i % 256, blob.data()[i]); 340 EXPECT_EQ(1040U, blob.size()); 341 for (size_t i = 0; i < blob.size(); ++i) { 342 EXPECT_EQ(i % 256, blob.data()[i]) [all...] |
/system/keymaster/include/keymaster/contexts/ |
pure_soft_keymaster_context.h | 62 keymaster_error_t ParseKeyBlob(const KeymasterKeyBlob& blob, 65 keymaster_error_t DeleteKey(const KeymasterKeyBlob& blob) const override; 83 const KeymasterKeyBlob& key_material, KeymasterKeyBlob* blob,
|
/external/fonttools/ |
README.md | 14 See [install.txt](https://github.com/behdad/fonttools/blob/master/Doc/install.txt) in the 'Doc' subdirectory for instructions on how to build and install TTX/FontTools from the sources. 21 See [documentation.html](https://github.com/behdad/fonttools/blob/master/Doc/documentation.html) in the "Doc" subdirectory for TTX usage instructions and information about the TTX file format.
|
/external/harfbuzz_ng/test/api/ |
test-shape.c | 86 hb_blob_t *blob; local 95 blob = hb_blob_create (test_data, sizeof (test_data), HB_MEMORY_MODE_READONLY, NULL, NULL); 96 face = hb_face_create (blob, 0); 97 hb_blob_destroy (blob);
|
/external/skqp/src/gpu/text/ |
GrAtlasTextContext.h | 64 // sets up the descriptor on the blob and returns a detached cache. Client must attach 75 const SkTextBlob* blob, SkScalar x, SkScalar y, 117 void drawDFText(GrAtlasTextBlob* blob, int runIndex, GrAtlasGlyphCache*, const SkSurfaceProps&, 122 void drawDFPosText(GrAtlasTextBlob* blob, int runIndex, GrAtlasGlyphCache*, 129 void initDistanceFieldPaint(GrAtlasTextBlob* blob,
|
/external/tensorflow/tensorflow/core/lib/db/ |
snapfn.cc | 23 /// - snap(value: BLOB|TEXT) -> BLOB 26 /// Applies Snappy compression. If value is TEXT or BLOB, then it is 27 /// compressed and a BLOB is returned with a byte prepended to indicate the 30 /// - unsnap(value: BLOB) -> TEXT|BLOB 35 /// blob is returned. Otherwise the original type is restored from the first 152 auto blob = reinterpret_cast<const char*>(sqlite3_value_blob(argv[0])); local 157 type = static_cast<int>(*blob++), --size; 172 if (!snappy::GetUncompressedLength(blob, static_cast<size_t>(size) [all...] |
/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...] |
/hardware/interfaces/keymaster/3.0/vts/functional/ |
key_param_output.cpp | 109 for (size_t i = 0; i < param.blob.size(); ++i) { 110 os << ::std::hex << ::std::setw(2) << static_cast<int>(param.blob[i]) << ::std::dec; 115 for (size_t i = 0; i < param.blob.size(); ++i) { 116 os << ::std::hex << ::std::setw(2) << static_cast<int>(param.blob[i]) << ::std::dec;
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
ConversationInfo.java | 92 public static ConversationInfo fromBlob(byte[] blob) { 93 if (blob == null) { 97 p.unmarshall(blob, 0, blob.length);
|
/prebuilts/go/darwin-x86/src/encoding/json/ |
example_marshaling_test.go | 54 blob := `["gopher","armadillo","zebra","unknown","gopher","bee","gopher","zebra"]` 56 if err := json.Unmarshal([]byte(blob), &zoo); err != nil {
|
/prebuilts/go/linux-x86/src/encoding/json/ |
example_marshaling_test.go | 54 blob := `["gopher","armadillo","zebra","unknown","gopher","bee","gopher","zebra"]` 56 if err := json.Unmarshal([]byte(blob), &zoo); err != nil {
|