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

1 2 3 4 5 6 78 91011>>

  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 1906 struct wpa_config_blob *blob = NULL; local
1967 const struct wpa_config_blob *blob; local
3448 struct wpa_config_blob *blob; local
    [all...]
  /external/skia/src/core/
SkRecorder.cpp 280 void SkRecorder::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
282 TRY_MINIRECORDER(drawTextBlob, blob, x, y, paint);
283 APPEND(DrawTextBlob, paint, blob, x, y);
SkPictureRecord.cpp 606 void SkPictureRecord::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
609 // op + paint index + blob index + x/y
614 this->addTextBlob(blob);
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 47 // The blob format:
48 // [0] Key of this blob
49 // [8] Checksum of this blob
50 // [12] Offset of this blob
51 // [16] Length of this blob (not including header)
52 // [20] Blob
99 // blob header offset
364 throw new RuntimeException("blob is too large!");
415 public byte[] buffer; // input/output: the buffer to store the blob
416 public int length; // output: the length of the blob
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseCursorTest.java 109 "CREATE TABLE test (_id INTEGER PRIMARY KEY, s TEXT, d REAL, l INTEGER, b BLOB);");
110 // insert blob
113 byte[] blob = new byte[1000];
115 Arrays.fill(blob, value);
116 args[3] = blob;
127 // use cursor to access blob
140 assertTrue(Arrays.equals(blob, cBlob));
  /cts/tests/tests/media/libaudiojni/
audio-record-native.cpp 20 #include "Blob.h"
305 std::shared_ptr<Blob> blob; local
329 blob = std::make_shared<Blob>(buffer, size);
330 mReadBlob = blob;
334 // success then the blob is ours with valid data otherwise a flush has occurred
336 copied += blob->mOffset;
361 auto b = std::make_shared<Blob>(mBufferSize);
427 std::shared_ptr<Blob> mReadBlob
    [all...]
  /external/harfbuzz_ng/util/
options.cc 474 hb_blob_t *blob = NULL;
476 /* Create the blob */
544 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
548 hb_face_t *face = hb_face_create (blob, face_index);
549 hb_blob_destroy (blob);
  /external/skia/include/utils/
SkDumpCanvas.h 91 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
  /external/skia/tools/android/
SkAndroidSDKCanvas.h 65 void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
  /external/wpa_supplicant_8/src/eap_peer/
eap.h 187 * set_config_blob - Set named configuration blob
189 * @blob: New value for the blob
191 * Adds a new configuration blob or replaces the current value of an
192 * existing blob.
194 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
197 * get_config_blob - Get a named configuration blob
199 * @name: Name of the blob
200 * Returns: Pointer to blob data or %NULL if not found
eap_i.h 385 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
eap_tls_common.c 38 const struct wpa_config_blob *blob; local
40 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
43 blob = eap_get_config_blob(sm, *name + 7);
44 if (blob == NULL) {
45 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
51 *data = blob->data;
52 *data_len = blob->len;
165 * Use blob data, if available. Otherwise, leave reference to external
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseCursorTest.java 94 "CREATE TABLE test (_id INTEGER PRIMARY KEY, s TEXT, d REAL, l INTEGER, b BLOB);");
95 // insert blob
98 byte[] blob = new byte[1000];
100 Arrays.fill(blob, value);
101 args[3] = blob;
112 // use cursor to access blob
123 assertTrue(Arrays.equals(blob, cBlob));
  /external/skia/src/gpu/batches/
GrAtlasTextBatch.cpp 148 Blob* blob = args.fBlob; local
152 blob->regenInBatch(target, fFontCache, &helper, args.fRun, args.fSubRun, &cache,
245 that->fGeoData.get()[i].fBlob = (Blob*)0x1;
  /external/skia/src/utils/
SkLuaCanvas.cpp 276 void SkLuaCanvas::onDrawTextBlob(const SkTextBlob *blob, SkScalar x, SkScalar y,
279 lua.pushTextBlob(blob, "blob");
SkNWayCanvas.cpp 258 void SkNWayCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
262 iter->drawTextBlob(blob, x, y, paint);
SkPaintFilterCanvas.cpp 207 void SkPaintFilterCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
211 this->INHERITED::onDrawTextBlob(blob, x, y, *apf.paint());
SkDumpCanvas.cpp 434 void SkDumpCanvas::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
437 toString(blob->bounds(), &str);
438 this->dump(kDrawText_Verb, &paint, "drawTextBlob(%p) [%s]", blob, str.c_str());
439 // FIXME: dump the actual blob content?
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherBackupHelper.java     [all...]
  /external/skia/resources/
slides.lua 85 local blob, newBottom = Sk.newTextBlob(node.text, bounds, paint)
87 canvas:drawTextBlob(blob, 0, 0, paint)
93 stroke_rect(canvas, blob:bounds(), {a=1,r=1,g=0,b=0})
  /external/wpa_supplicant_8/wpa_supplicant/
config.c 2280 struct wpa_config_blob *blob, *prev; local
3520 struct wpa_config_blob *blob = config->blobs; local
    [all...]
  /system/security/keystore/
IKeystoreService.cpp 219 static bool readKeymasterBlob(const Parcel& in, keymaster_blob_t* blob) {
229 blob->data = reinterpret_cast<const uint8_t*>(malloc(length));
230 if (!blob->data)
237 blob->data_length = static_cast<size_t>(length);
238 memcpy(const_cast<uint8_t*>(blob->data), buf, length);
318 out->writeInt32(param.blob.data_length);
319 void* buf = out->writeInplace(param.blob.data_length);
321 memcpy(buf, param.blob.data, param.blob.data_length);
323 ALOGE("Failed to writeInplace keymaster blob param")
    [all...]
  /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 {
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 555 const void* blob = sqlite3_column_blob(statement, 0); local
556 if (blob) {
559 return createAshmemRegionWithData(env, blob, length);
626 // BLOB data
627 const void* blob = sqlite3_column_blob(statement, i); local
629 status = window->putBlob(addedRows, i, blob, size);
631 LOG_WINDOW("Failed allocating %u bytes for blob at %d,%d, error=%d",
636 LOG_WINDOW("%d,%d is Blob with %u bytes",
    [all...]
  /frameworks/av/media/ndk/
NdkImage.cpp 218 // Blob is used for JPEG data, RAW10 and RAW12 is used for 10-bit and 12-bit raw data,
292 // Blob is used for JPEG/Raw opaque data. It is single plane and has 0 row stride and
313 struct camera3_jpeg_blob* blob = (struct camera3_jpeg_blob*)(header); local
314 if (blob->jpeg_blob_id == CAMERA3_JPEG_BLOB_ID) {
315 size = blob->jpeg_size;
323 * means that in certain rare situations a regular JPEG blob

Completed in 1657 milliseconds

1 2 3 4 5 6 78 91011>>