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

12 3 4 5 6 7 8 91011>>

  /external/dtc/
fdtput.c 167 static int store_key_value(char **blob, const char *node_name,
173 node = fdt_path_offset(*blob, node_name);
179 err = fdt_setprop(*blob, node, property, buf, len);
181 *blob = realloc_property(*blob, node, property, len);
182 err = fdt_setprop(*blob, node, property, buf, len);
197 * @param blob FDT blob to write into
201 static int create_paths(char **blob, const char *in_path)
217 node = fdt_subnode_offset_namelen(*blob, offset, path
332 char *blob; local
    [all...]
fdtget.c 118 * @param blob FDT blob
122 static int list_properties(const void *blob, int node)
128 prop = fdt_first_property_offset(blob, node);
133 data = fdt_get_property_by_offset(blob, prop, NULL);
134 name = fdt_string(blob, fdt32_to_cpu(data->nameoff));
137 prop = fdt_next_property_offset(blob, prop);
146 * @param blob FDT blob
150 static int list_subnodes(const void *blob, int node
253 char *blob; local
    [all...]
  /external/ImageMagick/MagickCore/
blob.c 49 #include "MagickCore/blob.h"
50 #include "MagickCore/blob-private.h"
187 % AttachBlob() attaches a blob to the BlobInfo structure.
191 % void AttachBlob(BlobInfo *blob_info,const void *blob,const size_t length)
197 % o blob: the address of a character stream in one of the image formats
200 % o length: This size_t integer reflects the length in bytes of the blob.
203 MagickExport void AttachBlob(BlobInfo *blob_info,const void *blob,
215 blob_info->data=(unsigned char *) blob;
232 % BlobToFile() writes a blob to a file. It returns MagickFalse if an error
237 % MagickBooleanType BlobToFile(char *filename,const void *blob,
737 *blob; local
978 *blob; local
1174 *blob; local
1536 *blob; local
1788 *blob; local
2633 *blob; local
    [all...]
  /external/ImageMagick/PerlMagick/t/
blob.t 27 @blob = $image->ImageToBlob();
31 $image->BlobToImage( @blob );
  /external/google-breakpad/src/client/linux/crash_generation/
crash_generation_client.h 48 // Request the crash server to generate a dump. |blob| is an opaque
51 virtual bool RequestDump(const void* blob, size_t blob_size) = 0;
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.h 46 // blob: a blob of data from the crashing process. See exception_handler.h
47 // blob_size: the length of |blob| in bytes.
52 const void* blob,
  /external/harfbuzz_ng/src/
hb-face-private.hh 71 hb_blob_t *blob; local
76 blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data);
77 if (unlikely (!blob))
80 return blob;
test-size-params.cc 44 hb_blob_t *blob = nullptr; local
51 /* Create the blob */
80 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
84 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
85 hb_blob_destroy (blob);
86 blob = nullptr;
test-would-substitute.cc 48 hb_blob_t *blob = nullptr; local
55 /* Create the blob */
84 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
88 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
89 hb_blob_destroy (blob);
90 blob = nullptr;
test.cc 47 hb_blob_t *blob = nullptr; local
54 /* Create the blob */
83 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
86 printf ("Opened font file %s: %u bytes long\n", argv[1], hb_blob_get_length (blob));
89 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
90 hb_blob_destroy (blob);
91 blob = nullptr;
  /system/libufdt/include/
ufdt_overlay.h 27 struct fdt_header *ufdt_install_blob(void *blob, size_t blob_size);
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.h 76 // blob: a blob of data from the crashing process. See exception_handler.h
77 // blob_size: the length of |blob|, in bytes
81 const void* blob, size_t blob_size);
84 const void* blob, size_t blob_size);
97 const void* blob, size_t blob_size,
101 const void* blob, size_t blob_size,
108 const void* blob, size_t blob_size,
113 const void* blob, size_t blob_size,
  /system/nvram/core/tests/
fake_storage.cpp 19 #include <nvram/messages/blob.h>
31 Status Load(Blob* blob) {
40 NVRAM_CHECK(blob->Assign(blob_.data(), blob_.size()));
44 Status Store(const Blob& blob) {
49 NVRAM_CHECK(blob_.Assign(blob.data(), blob.size()));
80 Blob blob_;
86 // Space blob storage
    [all...]
  /external/v8/src/snapshot/
mksnapshot.cc 38 void WriteSnapshot(v8::StartupData blob) const {
40 reinterpret_cast<const i::byte*>(blob.data), blob.raw_size);
46 void MaybeWriteStartupBlob(const i::Vector<const i::byte>& blob) const {
49 size_t written = fwrite(blob.begin(), 1, blob.length(), startup_blob_file_);
50 if (written != static_cast<size_t>(blob.length())) {
56 void MaybeWriteSnapshotFile(const i::Vector<const i::byte>& blob) const {
60 WriteData(blob);
75 fprintf(fp_, " return &blob;\n")
164 StartupData blob = v8::V8::CreateSnapshotDataBlob(embed_script); local
    [all...]
  /system/keymaster/legacy_support/
keymaster_passthrough_engine.cpp 95 const KeymasterKeyBlob& blob,
100 keymaster_error_t error = km_device_->export_key(km_device_, format, &blob, &client_id,
111 keymaster_error_t DeleteKey(const KeymasterKeyBlob& blob) const override {
112 return km_device_->delete_key(km_device_, &blob);
219 keymaster_key_blob_t blob = {}; local
221 &blob, &characteristics);
224 unique_ptr<uint8_t, Malloc_Delete> blob_deleter(const_cast<uint8_t*>(blob.key_material));
225 key_blob->key_material = dup_buffer(blob.key_material, blob.key_material_size);
226 key_blob->key_material_size = blob.key_material_size
242 keymaster_key_blob_t blob = {}; local
269 keymaster_key_blob_t blob = {}; local
298 keymaster_key_blob_t blob = {}; local
    [all...]
  /external/ImageMagick/Magick++/tests/
readWriteBlob.cpp 23 // A derived Blob class to exercise updateNoCopy()
24 class myBlob : public Blob
29 : Blob()
41 cout << "Failed to stream into blob!" << endl;
45 // Insert data into blob
47 Blob::NewAllocator );
78 // Read raw data from file into BLOB
101 // Construct Magick++ Blob
102 Blob blob(static_cast<const unsigned char*>(blobData), blobLen)
169 Blob blob; local
194 Blob blob; local
    [all...]
  /external/skia/gm/
largeglyphblur.cpp 36 sk_sp<SkTextBlob> blob(builder.make());
37 canvas->drawTextBlob(blob, 10, 200, blurPaint);
38 canvas->drawTextBlob(blob, 10, 200, paint);
clip_error.cpp 18 static void draw_text(SkCanvas* canvas, sk_sp<SkTextBlob> blob,
25 canvas->drawTextBlob(blob, 0, 256, blurPaint);
26 canvas->drawTextBlob(blob, 0, 477, paint);
62 sk_sp<SkTextBlob> blob(builder.make());
70 draw_text(canvas, blob, paint, blurPaint, clearPaint);
76 draw_text(canvas, blob, paint, blurPaint, clearPaint);
  /external/skqp/gm/
largeglyphblur.cpp 36 sk_sp<SkTextBlob> blob(builder.make());
37 canvas->drawTextBlob(blob, 10, 200, blurPaint);
38 canvas->drawTextBlob(blob, 10, 200, paint);
clip_error.cpp 18 static void draw_text(SkCanvas* canvas, sk_sp<SkTextBlob> blob,
25 canvas->drawTextBlob(blob, 0, 256, blurPaint);
26 canvas->drawTextBlob(blob, 0, 477, paint);
62 sk_sp<SkTextBlob> blob(builder.make());
70 draw_text(canvas, blob, paint, blurPaint, clearPaint);
76 draw_text(canvas, blob, paint, blurPaint, clearPaint);
  /system/update_engine/payload_consumer/
extent_reader_unittest.cc 64 void ReadExtents(vector<Extent> extents, brillo::Blob* blob) {
65 blob->clear();
67 blob->insert(
68 blob->end(),
76 brillo::Blob sample_;
84 brillo::Blob blob1(utils::BlocksInExtents(extents) * kBlockSize);
86 brillo::Blob blob2;
96 brillo::Blob blob(1)
    [all...]
  /hardware/libhardware/include/hardware/
keymaster_defs.h 319 keymaster_blob_t blob; /* KM_BIGNUM and KM_BYTES*/ member in union:__anon48296::__anon48297
524 param.blob.data = (uint8_t*)bytes;
525 param.blob.data_length = bytes_len;
571 if (a->blob.data_length != 0 && b->blob.data_length == 0)
573 if (a->blob.data_length == 0 && b->blob.data_length == 0)
575 if (a->blob.data_length == 0 && b->blob.data_length > 0)
578 retval = memcmp(a->blob.data, b->blob.data, a->blob.data_length < b->blob.data_lengt
    [all...]
  /system/iot/attestation/atap/libatap/
atap_util.c 51 uint8_t* append_blob_to_buf(uint8_t* buf, const AtapBlob* blob) {
52 atap_assert(blob->data_length == 0 || blob->data);
53 buf = append_uint32_to_buf(buf, blob->data_length);
54 if (blob->data_length > 0) {
55 buf = append_to_buf(buf, blob->data, blob->data_length);
112 bool copy_blob_from_buf(uint8_t** buf_ptr, AtapBlob* blob) {
113 atap_memset(blob, 0, sizeof(AtapBlob));
114 copy_uint32_from_buf(buf_ptr, &blob->data_length)
    [all...]
  /system/keymaster/include/keymaster/
android_keymaster_utils.h 218 const uint8_t* const & accessBlobData(const keymaster_key_blob_t* blob) {
219 return blob->key_material;
222 const uint8_t*& accessBlobData(keymaster_key_blob_t* blob) {
223 return blob->key_material;
226 const size_t& accessBlobSize(const keymaster_key_blob_t* blob) {
227 return blob->key_material_size;
230 size_t& accessBlobSize(keymaster_key_blob_t* blob) {
231 return blob->key_material_size;
235 const uint8_t* const & accessBlobData(const keymaster_blob_t* blob) {
236 return blob->data
    [all...]
soft_key_factory.h 32 * CreateKeyBlob takes authorization sets and key material and produces a key blob and hardware
34 * (Keystore, generally). The blob must be integrity-checked and may be encrypted, depending
40 KeymasterKeyBlob* blob, AuthorizationSet* hw_enforced,

Completed in 1556 milliseconds

12 3 4 5 6 7 8 91011>>