Searched defs:blob (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_database_SQLiteQuery.cpp144 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",
H A Dandroid_database_SQLiteStatement.cpp225 const void * blob = sqlite3_column_blob(statement, 0); local
226 if (blob != NULL) {
229 value = create_ashmem_region_with_data(env, blob, len);
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp396 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
[all...]
/frameworks/base/cmds/keystore/
H A Dkeystore.cpp150 /* Here is the file format. There are two parts in blob.value, the secret and
152 * can be found in blob.length. The description is stored after the secret in
153 * plaintext, and its size is specified in blob.info. The total size of the two
156 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
159 struct __attribute__((packed)) blob { struct
180 Blob(blob b) {
286 struct blob mBlob;
334 // we read the raw blob t
[all...]

Completed in 100 milliseconds