/external/wpa_supplicant_6/wpa_supplicant/ |
ctrl_iface_dbus_handlers.c | 1390 struct wpa_config_blob *blob; local [all...] |
config.c | 1599 struct wpa_config_blob *blob, *prevblob; local 1900 struct wpa_config_blob *blob = config->blobs; local [all...] |
preauth_test.c | 177 struct wpa_config_blob *blob) 180 wpa_config_set_blob(wpa_s->conf, blob);
|
wpa_supplicant.conf | 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...] |
/frameworks/base/core/java/android/provider/ |
SyncStateContract.java | 129 byte[] blob = c.getBlob(c.getColumnIndexOrThrow(Columns.DATA)); 130 return Pair.create(ContentUris.withAppendedId(uri, rowId), blob);
|
/cts/tests/tests/database/src/android/database/cts/ |
AbstractWindowedCursorTest.java | 237 byte[] blob = new byte[BLOB_SIZE]; 238 Arrays.fill(blob, TEST_VALUE); 239 assertTrue(mWindow.putBlob(blob, ROW_INDEX0, COLUMN_INDEX1)); 246 assertTrue(Arrays.equals(blob, targetBuffer));
|
DatabaseCursorTest.java | 150 "CREATE TABLE test (_id INTEGER PRIMARY KEY, s TEXT, d REAL, l INTEGER, b BLOB);"); 151 // insert blob 154 byte[] blob = new byte[1000]; 156 Arrays.fill(blob, value); 157 args[3] = blob; 168 // use cursor to access blob 181 assertTrue(Arrays.equals(blob, cBlob)); 189 Arrays.fill(blob, value);
|
/development/scripts/app_engine_server/gae_shell/ |
shell.py | 102 globals = db.ListProperty(db.Blob) 115 blob = db.Blob(pickle.dumps(value)) 119 self.globals[index] = blob 122 self.globals.append(blob)
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8XMLHttpRequestCustom.cpp | 153 Blob* blob = V8Blob::toNative(object); local 154 ASSERT(blob); 155 xmlHttpRequest->send(blob, ec);
|
/external/wpa_supplicant/ |
eap_fast.c | 319 if (os_strncmp(pac_file, "blob://", 7) == 0) { 320 const struct wpa_config_blob *blob; local 321 blob = eap_get_config_blob(sm, pac_file + 7); 322 if (blob == NULL) { 323 wpa_printf(MSG_INFO, "EAP-FAST: No PAC blob '%s' - " 328 rc.pos = (char *) blob->data; 329 rc.end = (char *) blob->data + blob->len; 582 if (os_strncmp(pac_file, "blob://", 7) == 0) { 583 struct wpa_config_blob *blob; local [all...] |
eap.h | 185 * set_config_blob - Set named configuration blob 187 * @blob: New value for the blob 189 * Adds a new configuration blob or replaces the current value of an 190 * existing blob. 192 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob); 195 * get_config_blob - Get a named configuration blob 197 * @name: Name of the blob 198 * Returns: Pointer to blob data or %NULL if not found
|
preauth_test.c | 184 struct wpa_config_blob *blob) 187 wpa_config_set_blob(wpa_s->conf, blob);
|
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
|
/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteProgramTest.java | 68 "num1 INTEGER, num2 INTEGER, image BLOB);"); 103 "num1 INTEGER, num2 INTEGER, image BLOB);"); 123 "num1 INTEGER, num2 INTEGER, image BLOB);"); 162 "num1 INTEGER, num2 INTEGER, image BLOB);"); 241 "num1 INTEGER, num2 INTEGER, image BLOB);"); 277 "num1 INTEGER, num2 INTEGER, image BLOB);"); 284 byte[] blob = new byte[] { '1', '2', '3' }; 285 statement.bindBlob(4, blob); 303 MoreAsserts.assertEquals(blob, value);
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
CodedInputStreamTest.java | 329 // Allocate and initialize a 1MB blob. 330 byte[] blob = new byte[1 << 20]; 331 for (int i = 0; i < blob.length; i++) { 332 blob[i] = (byte)i; 338 builder.setOptionalBytes(ByteString.copyFrom(blob));
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/ |
eap.h | 186 * set_config_blob - Set named configuration blob 188 * @blob: New value for the blob 190 * Adds a new configuration blob or replaces the current value of an 191 * existing blob. 193 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob); 196 * get_config_blob - Get a named configuration blob 198 * @name: Name of the blob 199 * Returns: Pointer to blob data or %NULL if not found
|
eap_i.h | 349 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
|
/hardware/ril/mock-ril/src/cpp/ |
node_buffer.h | 69 struct Blob_* blob() const { return blob_; } function in class:Buffer
|
/libcore/sqlite-jdbc/src/main/java/SQLite/ |
Database.java | 647 * Open an SQLite3 blob. Only available in SQLite 3.4.0 and above. 653 * @return a Blob object 656 public Blob open_blob(String db, String table, String column, 659 Blob blob = new Blob(); local 660 _open_blob(db, table, column, row, rw, blob); 661 return blob; 701 * Internal SQLite open blob method. 707 * @param blob Blob objec [all...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseCursorTest.java | 135 "CREATE TABLE test (_id INTEGER PRIMARY KEY, s TEXT, d REAL, l INTEGER, b BLOB);"); 136 // insert blob 139 byte[] blob = new byte[1000]; 141 Arrays.fill(blob, value); 142 args[3] = blob; 153 // use cursor to access blob 164 assertTrue(Arrays.equals(blob, cBlob)); 172 Arrays.fill(blob, value);
|
/external/chromium/net/http/ |
http_response_headers.cc | 127 std::string blob; local 128 blob.reserve(raw_headers_.size()); 133 blob.assign(raw_headers_.c_str(), strlen(raw_headers_.c_str()) + 1); 148 blob.append(parsed_[i].name_begin, parsed_[k].value_end); 149 blob.push_back('\0'); 154 blob.push_back('\0'); 156 pickle->WriteString(blob); [all...] |
/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
|
/frameworks/base/core/jni/ |
android_database_SQLiteQuery.cpp | 208 LOGE("Failed allocating %u bytes for text/blob at %d,%d", size, 242 // BLOB data 243 uint8_t const * blob = (uint8_t const *)sqlite3_column_blob(statement, i); local 248 LOGE("Failed allocating %u bytes for blob at %d,%d", size, 253 window->copyIn(offset, blob, size); 262 LOG_WINDOW("%d,%d is Blob with %u bytes @ %d", startPos + numRows, i, size, offset);
|