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

1 2 3 4 5 6 7 8 91011>>

  /external/harfbuzz_ng/src/
hb-blob.cc 68 static bool _try_writable (hb_blob_t *blob);
71 _hb_blob_destroy_user_data (hb_blob_t *blob)
73 if (blob->destroy) {
74 blob->destroy (blob->user_data);
75 blob->user_data = NULL;
76 blob->destroy = NULL;
82 * @data: Pointer to blob data.
88 * Creates a new "blob" object wrapping @data. The @mode parameter is used
91 * Return value: New blob, or the empty blob if something failed or if @length i
103 hb_blob_t *blob; local
156 hb_blob_t *blob; local
    [all...]
hb-blob.h 43 * that is passed to HarfBuzz in a blob. If there is
75 * Even if the parent blob is writable, we don't
76 * want the user of the sub-blob to be able to
89 hb_blob_reference (hb_blob_t *blob);
92 hb_blob_destroy (hb_blob_t *blob);
95 hb_blob_set_user_data (hb_blob_t *blob,
103 hb_blob_get_user_data (hb_blob_t *blob,
108 hb_blob_make_immutable (hb_blob_t *blob);
111 hb_blob_is_immutable (hb_blob_t *blob);
115 hb_blob_get_length (hb_blob_t *blob);
    [all...]
hb-face-private.hh 67 hb_blob_t *blob; local
72 blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data);
73 if (unlikely (!blob))
76 return blob;
test-size-params.cc 46 hb_blob_t *blob = NULL; local
53 /* Create the blob */
82 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
86 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
87 hb_blob_destroy (blob);
88 blob = NULL;
test-would-substitute.cc 50 hb_blob_t *blob = NULL; local
57 /* Create the blob */
86 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
90 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
91 hb_blob_destroy (blob);
92 blob = NULL;
  /frameworks/base/core/java/android/security/keymaster/
KeymasterBlobArgument.java 25 public final byte[] blob; field in class:KeymasterBlobArgument
27 public KeymasterBlobArgument(int tag, byte[] blob) {
34 throw new IllegalArgumentException("Bad blob tag " + tag);
36 this.blob = blob;
41 blob = in.createByteArray();
46 out.writeByteArray(blob);
KeymasterBlob.java 26 public byte[] blob; field in class:KeymasterBlob
28 public KeymasterBlob(byte[] blob) {
29 this.blob = blob;
43 blob = in.createByteArray();
53 out.writeByteArray(blob);
  /external/vboot_reference/tests/futility/
test_gbb_utility.sh 18 ${FUTILITY} gbb_utility -c 16,0x10,16,0x10 ${TMP}.blob
21 ${FUTILITY} gbb_utility -s --flags=0xdeadbeef ${TMP}.blob
22 ${FUTILITY} gbb_utility -g --flags ${TMP}.blob | grep -i 0xdeadbeef
25 if ${FUTILITY} gbb_utility -s --hwid="0123456789ABCDEF" ${TMP}.blob; then
29 ${FUTILITY} gbb_utility -s --hwid="0123456789ABCDE" ${TMP}.blob
31 ${FUTILITY} gbb_utility -g ${TMP}.blob | grep "0123456789ABCDE"
39 if ${FUTILITY} gbb_utility -s --rootkey ${TMP}.data1.toolong ${TMP}.blob; then false; fi
40 if ${FUTILITY} gbb_utility -s --recoverykey ${TMP}.data2.toolong ${TMP}.blob; then false; fi
41 if ${FUTILITY} gbb_utility -s --bmpfv ${TMP}.data3.toolong ${TMP}.blob; then false; fi
50 --bmpfv ${TMP}.data3.short ${TMP}.blob
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Blob.java 7 * SQLite 3.4.0 incremental blob I/O interface.
13 * Blob instance
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) {
29 this.blob = blob;
39 int ret = blob.size - pos
162 private Blob blob; field in class:BlobW
    [all...]
  /external/skia/src/gpu/text/
GrTextBlobCache.h 32 // creates an uncached blob
36 GrAtlasTextBlob* createBlob(const SkTextBlob* blob) {
39 BlobGlyphCount(&glyphCount, &runCount, blob);
44 GrAtlasTextBlob* createCachedBlob(const SkTextBlob* blob,
50 BlobGlyphCount(&glyphCount, &runCount, blob);
61 void remove(GrAtlasTextBlob* blob) {
62 fCache.remove(blob->key());
63 fBlobList.remove(blob);
64 blob->unref();
67 void add(GrAtlasTextBlob* blob) {
    [all...]
GrTextBlobCache.cpp 17 GrAtlasTextBlob* blob = &(*iter); local
18 fBlobList.remove(blob);
19 blob->unref();
  /external/dbus/test/
marshal.c 54 get_uint32 (const gchar *blob,
61 blob[offset] |
62 (blob[offset + 1] << 8) |
63 (blob[offset + 2] << 16) |
64 (blob[offset + 3] << 24);
69 (blob[offset] << 24) |
70 (blob[offset + 1] << 16) |
71 (blob[offset + 2] << 8) |
72 blob[offset + 3];
148 const gchar *blob = arg local
206 const gchar *blob = arg; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_none.c 40 struct wpa_config_blob *blob; local
51 for (blob = config->blobs; blob; blob = blob->next) {
  /system/update_engine/payload_generator/
blob_file_writer.cc 23 off_t BlobFileWriter::StoreBlob(const brillo::Blob& blob) {
25 if (!utils::PWriteAll(blob_fd_, blob.data(), blob.size(), *blob_file_size_))
29 *blob_file_size_ += blob.size();
blob_file_writer_unittest.cc 43 brillo::Blob blob(blob_size);
44 FillWithData(&blob);
45 EXPECT_EQ(0, blob_file.StoreBlob(blob));
46 EXPECT_EQ(blob_size, blob_file.StoreBlob(blob));
48 brillo::Blob stored_blob(blob_size);
56 EXPECT_EQ(blob, stored_blob);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/
scrape_gtest_log.py 22 blob = sys.stdin.read()
24 re.findall(r'{([^}]*.?)}', blob)) + ']'
  /packages/services/Car/libvehiclenetwork/native/
VehicleNetworkProtoUtil.h 68 Parcel::WritableBlob* blob; member in class:android::WritableBlobHolder
71 : blob(aBlob) {
75 if (blob != NULL) {
76 blob->release();
77 delete blob;
84 // duplicated here is Blob is not public.
87 Parcel::ReadableBlob* blob; member in class:android::ReadableBlobHolder
90 : blob(aBlob) {
94 if (blob != NULL) {
95 blob->release()
    [all...]
IVehicleNetworkHalMock.cpp 66 ReadableBlobHolder blob(new Parcel::ReadableBlob());
67 if (blob.blob == NULL) {
72 status = reply.readBlob(size, blob.blob);
74 ALOGE("listProperties, cannot read blob %d", status);
82 if(!configs->ParseFromArray(blob.blob->data(), size)) {
188 WritableBlobHolder blob(new Parcel::WritableBlob());
189 ASSERT_OR_HANDLE_NO_MEMORY(blob.blob, return NO_MEMORY)
    [all...]
IVehicleNetworkListener.cpp 58 WritableBlobHolder blob(new Parcel::WritableBlob());
61 data.writeBlob(size, false, blob.blob);
62 values->SerializeToArray(blob.blob->data(), size);
100 ReadableBlobHolder blob(new Parcel::ReadableBlob());
101 ASSERT_OR_HANDLE_NO_MEMORY(blob.blob, return NO_MEMORY);
103 r = data.readBlob(size, blob.blob);
    [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")
165 StartupData blob = v8::V8::CreateSnapshotDataBlob(extra_code); local
    [all...]
  /external/libbrillo/brillo/
secure_blob_unittest.cc 24 static bool FindBlobInBlob(const brillo::Blob& haystack,
25 const brillo::Blob& needle) {
31 static int FindBlobIndexInBlob(const brillo::Blob& haystack,
32 const brillo::Blob& needle) {
47 SecureBlob blob(32);
49 EXPECT_EQ(32, blob.size());
57 SecureBlob blob(std::begin(from_data), std::end(from_data));
59 EXPECT_EQ(sizeof(from_data), blob.size());
62 EXPECT_EQ(from_data[i], blob[i]);
68 brillo::Blob from_blob(32)
114 SecureBlob blob = SecureBlob(test_string.begin(), test_string.end()); local
    [all...]
  /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/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,
  /external/skia/gm/
largeglyphblur.cpp 36 SkAutoTUnref<const SkTextBlob> blob(builder.build());
37 canvas->drawTextBlob(blob.get(), 10, 200, blurPaint);
38 canvas->drawTextBlob(blob.get(), 10, 200, paint);

Completed in 389 milliseconds

1 2 3 4 5 6 7 8 91011>>