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

1 2 3 4 5

  /external/skia/src/gpu/text/
GrTextBlobCache.cpp 17 GrAtlasTextBlob* blob = &(*iter); local
18 fBlobList.remove(blob);
19 blob->unref();
  /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) {
  /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/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 9 boolean blob; field in class:BatchArg
11 BatchArg(String arg, boolean blob) {
17 this.blob = blob;
409 blobs[k] = b.blob;
451 public void setBlob(int i, Blob x) throws SQLException {
723 public Blob getBlob(String parameterName) throws SQLException {
727 public Blob getBlob(int parameterIndex) throws SQLException {
  /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()};
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...]
key_value_store_unittest.cc 46 string blob = "A=B\n# Comment\n"; local
47 ASSERT_EQ(blob.size(), base::WriteFile(temp_file_, blob.data(), blob.size()));
112 string blob = "TRUE=true\nfalse=false\nvar=false\nDONT_SHOUT=TRUE\n"; local
113 EXPECT_TRUE(store_.LoadFromString(blob));
  /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()};
  /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/harfbuzz_ng/src/
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;
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;
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;
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;
sample.py 25 blob = hb.glib_blob_create (GLib.Bytes.new (fontdata)) variable
26 face = hb.face_create (blob, 0)
27 del blob
  /external/harfbuzz_ng/test/fuzzing/
hb-fuzzer.cc 8 hb_blob_t *blob = hb_blob_create((const char *)data, size, local
10 hb_face_t *face = hb_face_create(blob, 0);
37 hb_blob_destroy(blob);
  /frameworks/minikin/libs/minikin/
MinikinInternal.cpp 86 hb_blob_t* blob = hb_face_reference_table(face, tag); local
88 return 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...]
  /art/test/044-proxy/src/
BasicTest.java 45 shapes.blob();
53 colors.blob();
135 public String blob(); method in interface:Shapes
159 public String blob(); method in interface:Colors
195 public String blob() { method in class:Mix
196 System.out.println("--- blob");
  /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/harfbuzz_ng/test/api/
test-blob.c 29 /* Unit tests for hb-blob.h */
48 hb_blob_t *blob; local
60 blob = hb_blob_get_empty ();
61 g_assert (blob == hb_blob_get_empty ());
63 len = hb_blob_get_length (blob);
66 data = hb_blob_get_data (blob, NULL);
69 data = hb_blob_get_data (blob, &len);
73 data_writable = hb_blob_get_data_writable (blob, NULL);
76 data_writable = hb_blob_get_data_writable (blob, &len);
94 hb_blob_t *blob; member in struct:__anon12555
    [all...]
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/libdrm/tests/proptest/
proptest.c 56 drmModePropertyBlobPtr blob; local
58 blob = drmModeGetPropertyBlob(fd, blob_id);
59 if (!blob) {
64 blob_data = blob->data;
66 for (i = 0; i < blob->length; i++) {
73 drmModeFreePropertyBlob(blob);
106 printf(" blob");
  /external/skia/tests/
TextBlobCacheTest.cpp 32 explicit TextBlobWrapper(const SkTextBlob* blob) : fBlob(blob) {}
33 TextBlobWrapper(const TextBlobWrapper& blob) : fBlob(SkRef(blob.fBlob.get())) {}
42 const SkTextBlob* blob = blobs[i].fBlob.get(); local
43 const SkRect& bounds = blob->bounds();
46 canvas->drawTextBlob(blob, 0, SkIntToScalar(yOffset), paint);

Completed in 492 milliseconds

1 2 3 4 5