HomeSort by relevance Sort by last modified time
    Searched refs:blob (Results 101 - 125 of 160) sorted by null

1 2 3 45 6 7

  /frameworks/base/core/jni/
android_database_SQLiteQuery.cpp 143 // BLOB data
144 const void* blob = sqlite3_column_blob(statement, i); local
146 status = window->putBlob(addedRows, i, blob, size);
148 LOG_WINDOW("Failed allocating %u bytes for blob at %d,%d, error=%d",
153 LOG_WINDOW("%d,%d is Blob with %u bytes",
  /packages/apps/Email/tests/src/com/android/email/activity/
ContactStatusLoaderTest.java 174 public PhotoCursor(byte[] blob) {
176 mBlob = blob;
  /external/wpa_supplicant/
eap_tls_common.c 29 const struct wpa_config_blob *blob; local
31 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
34 blob = eap_get_config_blob(sm, *name + 7);
35 if (blob == NULL) {
36 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
41 *data = blob->data;
42 *data_len = blob->len;
eap_i.h 348 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
eapol_sm.h 152 * set_config_blob - Set or add a named configuration blob
154 * @blob: New value for the blob
156 * Adds a new configuration blob or replaces the current value of an
157 * existing blob.
159 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
162 * get_config_blob - Get a named configuration blob
164 * @name: Name of the blob
165 * Returns: Pointer to blob data or %NULL if not found
wpa.h 79 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 28 const struct wpa_config_blob *blob; local
30 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
33 blob = eap_get_config_blob(sm, *name + 7);
34 if (blob == NULL) {
35 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
41 *data = blob->data;
42 *data_len = blob->len;
118 * Use blob data, if available. Otherwise, leave reference to external
eap_i.h 350 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
  /external/chromium/net/http/
http_response_headers.cc 185 std::string blob; local
186 blob.reserve(raw_headers_.size());
191 blob.assign(raw_headers_.c_str(), strlen(raw_headers_.c_str()) + 1);
206 blob.append(parsed_[i].name_begin, parsed_[k].value_end);
207 blob.push_back('\0');
212 blob.push_back('\0');
214 pickle->WriteString(blob);
    [all...]
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 31 #include "Blob.h"
119 #if ENABLE(BLOB) || ENABLE(FILE_SYSTEM)
126 #if ENABLE(BLOB)
210 #if ENABLE(BLOB)
379 #if ENABLE(BLOB)
380 KURL ScriptExecutionContext::createPublicBlobURL(Blob* blob)
382 if (!blob)
387 ThreadableBlobRegistry::registerBlobURL(publicURL, blob->url());
401 #if ENABLE(BLOB) || ENABLE(FILE_SYSTEM
    [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
98 // blob header offset
363 throw new RuntimeException("blob is too large!");
404 public byte[] buffer; // input/output: the buffer to store the blob
405 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));
MergeCursorTest.java 221 // insert blob and other values
435 byte[] blob, String tablename) {
440 args[3] = blob;
442 + "string_text TEXT, double_number REAL, int_number INTEGER, blob_data BLOB);");
448 // insert null blob.
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_i.h 349 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
eap_tls_common.c 28 const struct wpa_config_blob *blob; local
30 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
33 blob = eap_get_config_blob(sm, *name + 7);
34 if (blob == NULL) {
35 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
41 *data = blob->data;
42 *data_len = blob->len;
118 * Use blob data, if available. Otherwise, leave reference to external
  /external/wpa_supplicant_6/wpa_supplicant/src/eapol_supp/
eapol_supp_sm.h 152 * set_config_blob - Set or add a named configuration blob
154 * @blob: New value for the blob
156 * Adds a new configuration blob or replaces the current value of an
157 * existing blob.
159 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
162 * get_config_blob - Get a named configuration blob
164 * @name: Name of the blob
165 * Returns: Pointer to blob data or %NULL if not found
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.h 152 * set_config_blob - Set or add a named configuration blob
154 * @blob: New value for the blob
156 * Adds a new configuration blob or replaces the current value of an
157 * existing blob.
159 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
162 * get_config_blob - Get a named configuration blob
164 * @name: Name of the blob
165 * Returns: Pointer to blob data or %NULL if not found
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseCursorTest.java 96 "CREATE TABLE test (_id INTEGER PRIMARY KEY, s TEXT, d REAL, l INTEGER, b BLOB);");
97 // insert blob
100 byte[] blob = new byte[1000];
102 Arrays.fill(blob, value);
103 args[3] = blob;
114 // use cursor to access blob
125 assertTrue(Arrays.equals(blob, cBlob));
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant.conf.orig 389 # Alternatively, a named configuration blob can be used by setting this
390 # to blob://<blob name>.
404 # Alternatively, a named configuration blob can be used by setting this
405 # to blob://<blob name>.
488 # background. Alternatively, a named configuration blob can be used by
489 # setting this to blob://<blob name>
719 pac_file="blob://eap-fast-pac
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf.orig 441 # Alternatively, a named configuration blob can be used by setting this
442 # to blob://<blob name>.
456 # Alternatively, a named configuration blob can be used by setting this
457 # to blob://<blob name>.
540 # background. Alternatively, a named configuration blob can be used by
541 # setting this to blob://<blob name>
771 pac_file="blob://eap-fast-pac
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 34 #include "Blob.h"
629 Blob* blob = V8Blob::toNative(value.As<v8::Object>()); local
630 if (!blob)
632 m_writer.writeBlob(blob->url().string(), blob->type(), blob->size());
958 PassRefPtr<Blob> blob = Blob::create(KURL(ParsedURLString, url), type, size)
    [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 {
  /external/javasqlite/src/main/native/
sqlite_jni.c 75 struct hbl *blobs; /* SQLite3 blob handles */
117 struct hbl *next; /* next blob handle */
118 sqlite3_blob *blob; /* SQLite3 blob */ member in struct:hbl
127 struct hbk *next; /* next blob handle */
589 case SQLITE_BLOB: ctype = "blob"; break;
707 case SQLITE_BLOB: ctype = "blob"; break;
848 if (bl->blob) {
849 sqlite3_blob_close(bl->blob);
851 bl->blob = 0
2628 const char **blob = 0; local
4361 sqlite3_blob *blob; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa.h 55 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
networkconfig.cpp 328 char blob[32]; local
331 snprintf(blob, sizeof(blob),
332 "blob://fast-pac-%d", id);
333 setNetworkParam(id, "pac_file", blob, true);

Completed in 8224 milliseconds

1 2 3 45 6 7