/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteProgramTest.java | 86 "num1 INTEGER, num2 INTEGER, image BLOB);"); 162 "num1 INTEGER, num2 INTEGER, image BLOB);"); 198 "num1 INTEGER, num2 INTEGER, image BLOB);"); 205 byte[] blob = new byte[] { '1', '2', '3' }; 206 statement.bindBlob(4, blob); 224 MoreAsserts.assertEquals(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/chromium/chrome/common/ |
sqlite_utils.h | 253 int bind_blob(int index, std::vector<unsigned char>* blob); 324 bool column_blob_as_vector(int index, std::vector<unsigned char>* blob); 325 bool column_blob_as_string(int index, std::string* blob);
|
/frameworks/base/core/jni/ |
android_database_SQLiteStatement.cpp | 225 const void * blob = sqlite3_column_blob(statement, 0); local 226 if (blob != NULL) { 229 value = create_ashmem_region_with_data(env, blob, len);
|
/external/wpa_supplicant_6/wpa_supplicant/ |
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);
|
/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);
|
/packages/apps/Browser/src/com/android/browser/ |
DataController.java | 212 byte[] blob = getCaptureBlob(tab); 213 if (blob == null) { 219 values.put(Thumbnails.THUMBNAIL, blob);
|
/external/javasqlite/src/main/java/SQLite/ |
Database.java | 722 * Open an SQLite3 blob. Only available in SQLite 3.4.0 and above. 728 * @return a Blob object 731 public Blob open_blob(String db, String table, String column, 734 Blob blob = new Blob(); local 735 _open_blob(db, table, column, row, rw, blob); 736 return blob; 776 * Internal SQLite open blob method. 782 * @param blob Blob objec [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
CodedInputStreamTest.java | 355 // Allocate and initialize a 1MB blob. 356 byte[] blob = new byte[1 << 20]; 357 for (int i = 0; i < blob.length; i++) { 358 blob[i] = (byte)i; 364 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
|
/external/wpa_supplicant_8/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
|
/frameworks/base/core/jni/android/graphics/ |
Bitmap.cpp | 396 android::Parcel::ReadableBlob blob;
local 397 android::status_t status = p->readBlob(size, &blob);
399 doThrowRE(env, "Could not read bitmap from parcel blob.");
405 memcpy(bitmap->getPixels(), blob.data(), size);
408 blob.release();
445 android::Parcel::WritableBlob blob;
local 446 android::status_t status = p->writeBlob(size, &blob);
448 doThrowRE(env, "Could not write bitmap to parcel blob.");
455 memset(blob.data(), 0, size);
457 memcpy(blob.data(), pSrc, size); [all...] |
/hardware/ril/mock-ril/src/cpp/ |
node_buffer.h | 69 struct Blob_* blob() const { return blob_; } function in class:Buffer
|
/external/wpa_supplicant_8/wpa_supplicant/ |
config.c | 1736 struct wpa_config_blob *blob, *prevblob; local 2124 struct wpa_config_blob *blob = config->blobs; local [all...] |
preauth_test.c | 178 struct wpa_config_blob *blob) 181 wpa_config_set_blob(wpa_s->conf, blob);
|
/device/samsung/maguro/self-extractors/imgtec/staging/ |
device-maguro.mk | 17 # Imgtec blob(s) necessary for Maguro hardware
|
/device/samsung/toro/self-extractors/imgtec/staging/ |
device-toro.mk | 17 # Imgtec blob(s) necessary for Toro hardware
|
/device/samsung/toro/self-extractors/samsung/staging/ |
device-toro.mk | 17 # Samsung blob(s) necessary for toro hardware
|
/external/chromium/chrome/browser/sync/util/ |
cryptographer.cc | 80 if (!it->second->Decrypt(encrypted.blob(), &plaintext)) { 159 if (!nigori.Decrypt(pending_keys_->blob(), &plaintext))
|
/external/webkit/LayoutTests/storage/ |
open-database-while-transaction-in-progress.js | 16 // size of the blob must be at least 2MB. 22 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo BLOB);");
|
/external/webkit/Source/WebCore/bindings/js/ |
JSXMLHttpRequestCustom.cpp | 33 #include "Blob.h" 71 if (Blob* responseBlob = m_impl->optionalResponseBlob()) 176 Blob* blob = impl()->responseBlob(ec); local 181 return toJS(exec, globalObject(), blob);
|
/external/webkit/Source/WebCore/fileapi/ |
FileReaderLoader.cpp | 33 #if ENABLE(BLOB) 39 #include "Blob.h" 74 void FileReaderLoader::start(ScriptExecutionContext* scriptExecutionContext, Blob* blob) 76 // The blob is read by routing through the request handling layer given a temporary public url. 82 ThreadableBlobRegistry::registerBlobURL(m_urlForReading, blob->url()); 327 #endif // ENABLE(BLOB)
|