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

1 2 3 4 5 6 7 8 910

  /external/python/cpython2/Demo/tkinter/guido/
imagedraw.py 14 canv.bind('<Button-1>', blob)
17 def blob(event): function
  /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/dtc/tests/
dumptrees.c 33 void *blob; member in struct:__anon19008
49 void *blob = trees[i].blob; local
55 size = fdt_totalsize(blob);
63 ret = write(fd, blob, size);
  /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...]
  /external/mesa3d/src/compiler/glsl/
blob.h 36 /* The blob functions implement a simple, low-level API for serializing and
39 * All objects written to a blob will be serialized directly, (without any
42 * by knowing exactly what data is expected, or by writing to the blob
45 * A blob is efficient in that it dynamically grows by doubling in size, so
49 struct blob { struct
50 /* The data actually written to the blob. */
63 * 1. blob->current should be equal to blob->end, (if not, too little was
66 * 2. blob->overrun should be false, (otherwise, too much was read).
76 * Create a new, empty blob, belonging to \mem_ctx
    [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/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/harfbuzz_ng/src/
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;
sample.py 26 blob = hb.glib_blob_create (GLib.Bytes.new (fontdata)) variable
27 face = hb.face_create (blob, 0)
28 del blob
test-buffer-serialize.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 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
87 hb_blob_destroy (blob);
88 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;
  /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);
50 hb_blob_destroy(blob);
  /external/libxcam/modules/isp/
xcam_cpf_reader.c 54 void xcam_cpf_blob_free (XCamCpfBlob *blob)
56 XCAM_FAIL_RETURN (blob);
58 if (blob->data)
59 xcam_free (blob->data);
61 xcam_free (blob);
105 uint8_t *blob; local
125 (void**)&blob, &blob_size) != tbd_err_none) ||
126 !blob || blob_size <= 0) {
133 memcpy (aiq_cpf->data, blob, blob_size);
149 (void**)&blob, &blob_size) != tbd_err_none)
    [all...]
  /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...]
  /system/libufdt/tests/src/
ufdt_overlay_test_app.c 47 struct fdt_header *blob = ufdt_install_blob(base_buf, blob_len); local
48 if (!blob) {
54 new_blob = ufdt_apply_overlay(blob, blob_len, overlay_buf, overlay_len);
68 // Do not dto_free(blob) - it's the same as base_buf.
ufdt_verify_overlay_app.cpp 51 struct fdt_header *blob = nullptr; local
70 blob = ufdt_install_blob(final_buf, final_size);
71 if (!blob) {
76 result = ufdt_verify_dtbo(blob, final_size, overlay_buf_array, overlay_count);
83 // Do not dto_free(blob) - it's the same as final_buf.
  /system/nvram/core/
persistence.cpp 32 // Encodes an |object| as a protobuf message and writes it to |blob|. Note that
46 storage::Status EncodeObject(const Object& object, Blob* blob) {
47 BlobOutputStreamBuffer stream(blob);
58 // Decodes a protobuf-encoded |object| from |blob|. It is OK if the provided
59 // |blob| includes trailing data that doesn't belong to the encoded object.
67 storage::Status DecodeObject(const Blob& blob, Object* object) {
68 InputStreamBuffer stream(blob.data(), blob.size())
100 Blob blob; local
109 Blob blob; local
118 Blob blob; local
127 Blob blob; local
    [all...]
  /system/nvram/messages/tests/
nvram_messages_test.cpp 30 Blob blob; local
31 ASSERT_TRUE(Encode(in, &blob));
32 ASSERT_TRUE(Decode(blob.data(), blob.size(), out));
111 const Blob& decoded_auth_value = decoded_payload->authorization_value;
195 const Blob& decoded_auth_value = decoded_payload->authorization_value;
258 const Blob& decoded_buffer = decoded_payload->buffer;
261 const Blob& decoded_auth_value = decoded_payload->authorization_value;
298 const Blob& decoded_auth_value = decoded_payload->authorization_value
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowGcsLogServlet.java 20 import com.google.cloud.storage.Blob;
102 Blob blobFile = vtsReportBucket.get(path);
124 Iterator<Blob> blobIterator = vtsReportBucket.list(listOptions).iterateAll();
126 Blob blob = blobIterator.next(); local
127 logger.log(Level.INFO, "blob name => " + blob);
128 if (blob.isDirectory()) {
129 logger.log(Level.INFO, "directory name => " + blob.getName());
130 dirList.add(blob.getName())
    [all...]
  /external/dtc/
fdtoverlay.c 37 "apply a number of overlays to a base blob\n"
49 "Input base DT blob",
50 "Output DT blob",
61 char *blob = NULL; local
66 blob = utilfdt_read_len(input_filename, &blob_len);
67 if (!blob) {
68 fprintf(stderr, "\nFailed to read base blob %s\n",
74 /* allocate blob pointer array */
90 /* grow the blob to worst case */
91 blob_len = fdt_totalsize(blob) + total_len
    [all...]

Completed in 1422 milliseconds

1 2 3 4 5 6 7 8 910