| /device/asus/fugu/self-extractors/widevine/staging/ | 
| device-partial.mk | 15 # Widevine blob(s) necessary for Fugu hardware 
 | 
| /device/lge/mako/self-extractors/lge/staging/ | 
| device-partial.mk | 15 # LGE blob(s) necessary for Mako hardware 
 | 
| /external/chromium_org/chrome/renderer/media/ | 
| cast_session_delegate.cc | 173   scoped_ptr<base::BinaryValue> blob( 175   callback.Run(blob.Pass());
 
 | 
| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ | 
| TempFile.js | 128         var blob = new Blob([data], {type: 'text/plain'}); 138         this._writer.write(blob);
 
 | 
| /external/wpa_supplicant_8/wpa_supplicant/ | 
| config.h | 111 	 * Alternatively, a named configuration blob can be used by setting 112 	 * this to blob://blob_name.
 138 	 * Alternatively, a named configuration blob can be used by setting
 139 	 * this to blob://blob_name.
 [all...]
 | 
| preauth_test.c | 163 					   struct wpa_config_blob *blob) 166 	wpa_config_set_blob(wpa_s->conf, blob);
 
 | 
| config.c | 1978  struct wpa_config_blob *blob, *prev;  local 3178  struct wpa_config_blob *blob = config->blobs;  local
 [all...]
 | 
| /packages/apps/Email/tests/src/com/android/email/activity/ | 
| ContactStatusLoaderTest.java | 181         public PhotoCursor(byte[] blob) { 183             mBlob = blob;
 
 | 
| /external/chromium_org/webkit/ | 
| webkit_storage_browser.target.darwin-arm.mk | 46 	webkit/browser/blob/blob_data_handle.cc \ 47 	webkit/browser/blob/blob_storage_context.cc \
 48 	webkit/browser/blob/blob_url_request_job.cc \
 49 	webkit/browser/blob/blob_url_request_job_factory.cc \
 50 	webkit/browser/blob/file_stream_reader.cc \
 51 	webkit/browser/blob/local_file_stream_reader.cc \
 52 	webkit/browser/blob/view_blob_internals_job.cc \
 
 | 
| webkit_storage_browser.target.linux-arm.mk | 46 	webkit/browser/blob/blob_data_handle.cc \ 47 	webkit/browser/blob/blob_storage_context.cc \
 48 	webkit/browser/blob/blob_url_request_job.cc \
 49 	webkit/browser/blob/blob_url_request_job_factory.cc \
 50 	webkit/browser/blob/file_stream_reader.cc \
 51 	webkit/browser/blob/local_file_stream_reader.cc \
 52 	webkit/browser/blob/view_blob_internals_job.cc \
 
 | 
| webkit_storage_common.target.darwin-arm.mk | 28 	webkit/common/blob/blob_data.cc \ 29 	webkit/common/blob/scoped_file.cc \
 30 	webkit/common/blob/shareable_file_reference.cc \
 
 | 
| webkit_storage_common.target.linux-arm.mk | 28 	webkit/common/blob/blob_data.cc \ 29 	webkit/common/blob/scoped_file.cc \
 30 	webkit/common/blob/shareable_file_reference.cc \
 
 | 
| /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
 99     // blob header offset
 364             throw new RuntimeException("blob is too large!");
 415         public byte[] buffer;   // input/output: the buffer to store the blob
 416         public int length;      // output: the length of the blob
 [all...]
 | 
| /packages/apps/Mms/src/com/android/mms/util/ | 
| 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
 100     // blob header offset
 365             throw new RuntimeException("blob is too large!");
 406         public byte[] buffer;   // input/output: the buffer to store the blob
 407         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));
 
 | 
| /external/harfbuzz_ng/util/ | 
| options.cc | 440   hb_blob_t *blob = NULL; 442   /* Create the blob */
 507     blob = hb_blob_create (font_data, len, mm, user_data, destroy);
 511   hb_face_t *face = hb_face_create (blob, face_index);
 512   hb_blob_destroy (blob);
 
 | 
| /external/wpa_supplicant_8/src/eap_peer/ | 
| eap.h | 180 	 * set_config_blob - Set named configuration blob 182 	 * @blob: New value for the blob
 184 	 * Adds a new configuration blob or replaces the current value of an
 185 	 * existing blob.
 187 	void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
 190 	 * get_config_blob - Get a named configuration blob
 192 	 * @name: Name of the blob
 193 	 * Returns: Pointer to blob data or %NULL if not found
 
 | 
| eap_i.h | 368 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob); 
 | 
| eap_tls_common.c | 38 	const struct wpa_config_blob *blob;  local 40 	if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
 43 	blob = eap_get_config_blob(sm, *name + 7);
 44 	if (blob == NULL) {
 45 		wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
 51 	*data = blob->data;
 52 	*data_len = blob->len;
 153 	 * Use blob data, if available. Otherwise, leave reference to external
 [all...]
 | 
| /frameworks/base/core/tests/coretests/src/android/database/ | 
| DatabaseCursorTest.java | 93             "CREATE TABLE test (_id INTEGER PRIMARY KEY, s TEXT, d REAL, l INTEGER, b BLOB);"); 94         // insert blob
 97         byte[] blob = new byte[1000];
 99         Arrays.fill(blob, value);
 100         args[3] = blob;
 111         // use cursor to access blob
 122         assertTrue(Arrays.equals(blob, cBlob));
 
 | 
| /system/security/keystore/ | 
| keystore.cpp | 441 /* Here is the file format. There are two parts in blob.value, the secret and 443  * can be found in blob.length. The description is stored after the secret in
 444  * plaintext, and its size is specified in blob.info. The total size of the two
 446  * the second is the blob's type, and the third byte is flags. Fields other
 447  * than blob.info, blob.length, and blob.value are modified by encryptBlob()
 464 struct __attribute__((packed)) blob {  struct
 486 class Blob {
 488     Blob(const uint8_t* value, int32_t valueLength, const uint8_t* info, uint8_t infoLength
 [all...]
 | 
| /external/chromium_org/net/http/ | 
| http_response_headers.cc | 194   std::string blob;  local 195   blob.reserve(raw_headers_.size());
 200   blob.assign(raw_headers_.c_str(), strlen(raw_headers_.c_str()) + 1);
 215       blob.append(parsed_[i].name_begin, parsed_[k].value_end);
 216       blob.push_back('\0');
 221   blob.push_back('\0');
 223   pickle->WriteString(blob);
 [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 {
 
 | 
| /frameworks/base/core/jni/ | 
| android_database_SQLiteConnection.cpp | 557         const void* blob = sqlite3_column_blob(statement, 0);  local 558         if (blob) {
 561                 return createAshmemRegionWithData(env, blob, length);
 628             // BLOB data
 629             const void* blob = sqlite3_column_blob(statement, i);  local
 631             status = window->putBlob(addedRows, i, blob, size);
 633                 LOG_WINDOW("Failed allocating %u bytes for blob at %d,%d, error=%d",
 638             LOG_WINDOW("%d,%d is Blob with %u bytes",
 [all...]
 | 
| /external/chromium_org/sync/internal_api/public/base/ | 
| unique_position.cc | 172 void UniquePosition::SerializeToString(std::string* blob) const { 173   DCHECK(blob);
 176   proto.SerializeToString(blob);
 
 |