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

1 2 3 4 5 6 7 891011>>

  /system/keymaster/include/keymaster/
authorization_set.h 395 * Append the tag and blob to the set. Copies the blob contents into internal storage; does not
396 * take ownership of the blob's data.
399 bool push_back(TypedTag<KM_BYTES, Tag> tag, const keymaster_blob_t& blob) {
400 return push_back(tag, blob.data, blob.data_length);
  /external/javasqlite/src/main/native/
sqlite_jni.c 74 struct hbl *blobs; /* SQLite3 blob handles */
116 struct hbl *next; /* next blob handle */
117 sqlite3_blob *blob; /* SQLite3 blob */ member in struct:hbl
126 struct hbk *next; /* next blob handle */
588 case SQLITE_BLOB: ctype = "blob"; break;
706 case SQLITE_BLOB: ctype = "blob"; break;
847 if (bl->blob) {
848 sqlite3_blob_close(bl->blob);
850 bl->blob = 0
2627 const char **blob = 0; local
4360 sqlite3_blob *blob; local
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
MergeCursorTest.java 140 // insert blob and other values
308 byte[] blob, String tablename) {
313 args[3] = blob;
315 + "string_text TEXT, double_number REAL, int_number INTEGER, blob_data BLOB);");
321 // insert null blob.
  /device/google/dragon/self-extractors/nvidia/staging/
device-partial.mk 15 # Nvidia blob(s) necessary for Dragon hardware
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 69 const void *blob,
72 const unsigned *ublob = (const unsigned *)blob;
u_debug.h 125 * Dump a blob in hex to the same place that debug_printf sends its
128 void debug_print_blob( const char *name, const void *blob, unsigned size );
  /external/skia/tools/android/
SkAndroidSDKCanvas.cpp 208 void SkAndroidSDKCanvas::onDrawTextBlob(const SkTextBlob* blob,
213 fProxyTarget->drawTextBlob(blob, x, y, filteredPaint);
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf 475 # Alternatively, a named configuration blob can be used by setting
476 # this to blob://blob_name.
498 # Alternatively, a named configuration blob can be used by setting
499 # this to blob://blob_name.
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 390 // Allocate and initialize a 1MB blob.
391 byte[] blob = new byte[1 << 20];
392 for (int i = 0; i < blob.length; i++) {
393 blob[i] = (byte) i;
399 builder.setOptionalBytes(ByteString.copyFrom(blob));
  /external/skia/src/core/
SkRecorder.h 85 void onDrawTextBlob(const SkTextBlob* blob,
  /external/skia/tools/debugger/
SkDebugCanvas.h 197 void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
  /external/skia/tools/json/
SkJSONCanvas.h 238 void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
  /external/v8/tools/profviz/
profviz.js 196 var blob = new Blob([new Uint8Array(args.contents).buffer],
199 ui.plot.src = window.URL.createObjectURL(blob);
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.h 165 * set_config_blob - Set or add a named configuration blob
167 * @blob: New value for the blob
169 * Adds a new configuration blob or replaces the current value of an
170 * existing blob.
172 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
175 * get_config_blob - Get a named configuration blob
177 * @name: Name of the blob
178 * Returns: Pointer to blob data or %NULL if not found
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
networkconfig.cpp 342 char blob[32]; local
345 snprintf(blob, sizeof(blob),
346 "blob://fast-pac-%d", id);
347 setNetworkParam(id, "pac_file", blob, true);
  /frameworks/base/core/java/android/security/keymaster/
KeymasterArguments.java 274 return ((KeymasterBlobArgument) arg).blob;
  /system/keymaster/
authorization_set_test.cpp 175 EXPECT_EQ(6U, deserialized[pos].blob.data_length);
176 EXPECT_EQ(0, memcmp(deserialized[pos].blob.data, "my_app", 6));
210 EXPECT_EQ(6U, deserialized[pos].blob.data_length);
211 EXPECT_EQ(0, memcmp(deserialized[pos].blob.data, "my_app", 6));
  /system/security/keystore/
blob.cpp 26 #include "blob.h"
31 Blob::Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength,
36 ALOGW("Provided blob length too large");
58 Blob::Blob(blob b) {
62 Blob::Blob() {
66 bool Blob::isEncrypted() const
    [all...]
key_store_service.h 228 * Upgrade a key blob under alias "name", returning the new blob in "blob". If "blob"
236 const keymaster::AuthorizationSet& params, Blob* blob);
  /external/robolectric/v3/libs/
sqlite4java-0.282.jar 
  /prebuilts/tools/common/m2/repository/com/almworks/sqlite4java/sqlite4java/0.282/
sqlite4java-0.282.jar 
  /external/libdrm/tests/modetest/
modetest.c 221 drmModePropertyBlobPtr blob; local
223 blob = drmModeGetPropertyBlob(dev->fd, blob_id);
224 if (!blob) {
229 blob_data = blob->data;
231 for (i = 0; i < blob->length; i++) {
238 drmModeFreePropertyBlob(blob);
267 printf(" blob");
    [all...]
  /device/huawei/angler/self-extractors/qcom/staging/
device-partial.mk 15 # Qualcomm blob(s) necessary for Shamu hardware
  /external/harfbuzz_ng/win32/
config-msvc.mak 166 $(CFG)\$(PLAT)\test-blob.exe \
  /external/jetty/src/java/org/eclipse/jetty/server/session/
JDBCSessionIdManager.java 23 import java.sql.Blob;
112 * is happy to use the "blob" type and getBlob() methods instead.
164 return "blob";
187 Blob blob = result.getBlob(columnName); local
188 return blob.getBinaryStream();
    [all...]

Completed in 3819 milliseconds

1 2 3 4 5 6 7 891011>>