| /system/security/keystore/ | 
| keystore.cpp | 366 /* Here is the file format. There are two parts in blob.value, the secret and 368  * can be found in blob.length. The description is stored after the secret in
 369  * plaintext, and its size is specified in blob.info. The total size of the two
 371  * the second is the blob's type, and the third byte is flags. Fields other
 372  * than blob.info, blob.length, and blob.value are modified by encryptBlob()
 389 struct __attribute__((packed)) blob {  struct
 411 class Blob {
 413     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 | 189   std::string blob;  local 190   blob.reserve(raw_headers_.size());
 195   blob.assign(raw_headers_.c_str(), strlen(raw_headers_.c_str()) + 1);
 210       blob.append(parsed_[i].name_begin, parsed_[k].value_end);
 211       blob.push_back('\0');
 216   blob.push_back('\0');
 218   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 {
 
 | 
| /external/wpa_supplicant_8/src/eap_peer/ | 
| eap_tls_common.c | 34 	const struct wpa_config_blob *blob;  local 36 	if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
 39 	blob = eap_get_config_blob(sm, *name + 7);
 40 	if (blob == NULL) {
 41 		wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
 47 	*data = blob->data;
 48 	*data_len = blob->len;
 139 	 * Use blob data, if available. Otherwise, leave reference to external
 [all...]
 | 
| /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 | 191 void UniquePosition::SerializeToString(std::string* blob) const { 192   DCHECK(blob);
 195   proto.SerializeToString(blob);
 
 | 
| /packages/apps/Launcher2/src/com/android/launcher2/ | 
| WidgetPreviewLoader.java | 277                     COLUMN_PREVIEW_BITMAP + " BLOB NOT NULL, " + 375             byte[] blob = result.getBlob(0);
 380             Bitmap out = BitmapFactory.decodeByteArray(blob, 0, blob.length, opts);
 
 | 
| /packages/apps/Launcher3/src/com/android/launcher3/ | 
| WidgetPreviewLoader.java | 277                     COLUMN_PREVIEW_BITMAP + " BLOB NOT NULL, " + 387             byte[] blob = result.getBlob(0);
 393                 return BitmapFactory.decodeByteArray(blob, 0, blob.length, opts);
 
 | 
| /external/javasqlite/src/main/native/ | 
| sqlite_jni.c | 74     struct hbl *blobs;		/* SQLite3 blob handles */ 116     struct hbl *next;		/* next blob handle */
 117     sqlite3_blob *blob;		/* SQLite3 blob */  member in struct:hbl
 126     struct hbk *next;		/* next blob handle */
 588 			    case SQLITE_BLOB:    ctype = "blob";    break;
 706 			case SQLITE_BLOB:    ctype = "blob";    break;
 847 	    if (bl->blob) {
 848 		sqlite3_blob_close(bl->blob);
 850 	    bl->blob = 0
 2627  const char **blob = 0;  local
 4360  sqlite3_blob *blob;  local
 [all...]
 | 
| /cts/tests/tests/database/src/android/database/cts/ | 
| MergeCursorTest.java | 140             // insert blob and other values 308             byte[] blob, String tablename) {
 313         args[3] = blob;
 315                 + "string_text TEXT, double_number REAL, int_number INTEGER, blob_data BLOB);");
 321         // insert null blob.
 
 | 
| /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ | 
| u_debug.c | 69                        const void *blob, 72    const unsigned *ublob = (const unsigned *)blob;
 
 | 
| u_debug.h | 126  * Dump a blob in hex to the same place that debug_printf sends its 129 void debug_print_blob( const char *name, const void *blob, unsigned size );
 
 | 
| /external/mesa3d/src/gallium/auxiliary/util/ | 
| u_debug.c | 69                        const void *blob, 72    const unsigned *ublob = (const unsigned *)blob;
 
 | 
| u_debug.h | 125  * Dump a blob in hex to the same place that debug_printf sends its 128 void debug_print_blob( const char *name, const void *blob, unsigned size );
 
 | 
| /external/chromium_org/third_party/WebKit/Source/modules/websockets/ | 
| MainThreadWebSocketChannel.cpp | 38 #include "core/fileapi/Blob.h" 163 WebSocketChannel::SendResult MainThreadWebSocketChannel::send(const Blob& binaryData)
 165     LOG(Network, "MainThreadWebSocketChannel %p send() Sending Blob '%s'", this, binaryData.url().elidedString().utf8().data());
 388     failAsError("Failed to load Blob: error code = " + String::number(errorCode)); // FIXME: Generate human-friendly reason message.
 711 void MainThreadWebSocketChannel::enqueueBlobFrame(WebSocketFrame::OpCode opCode, const Blob& blob)
 717     frame->blobData = Blob::create(blob.url(), blob.type(), blob.size())
 [all...]
 | 
| WebSocket.cpp | 44 #include "core/fileapi/Blob.h" 354 void WebSocket::send(Blob* binaryData, ExceptionState& es)
 356     LOG(Network, "WebSocket %p send() Sending Blob '%s'", this, binaryData->url().elidedString().utf8().data());
 444         return "blob";
 454     if (binaryType == "blob") {
 547         RefPtr<Blob> blob = Blob::create(blobData.release(), size);  local
 548         dispatchEvent(MessageEvent::create(blob.release(), SecurityOrigin::create(m_url)->toString()));
 
 | 
| /external/chromium_org/v8/tools/profviz/ | 
| profviz.js | 195     var blob = new Blob([new Uint8Array(args.contents).buffer], 198     ui.plot.src = window.URL.createObjectURL(blob);
 
 | 
| /external/wpa_supplicant_8/src/eapol_supp/ | 
| eapol_supp_sm.h | 146 	 * set_config_blob - Set or add a named configuration blob 148 	 * @blob: New value for the blob
 150 	 * Adds a new configuration blob or replaces the current value of an
 151 	 * existing blob.
 153 	void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
 156 	 * get_config_blob - Get a named configuration blob
 158 	 * @name: Name of the blob
 159 	 * Returns: Pointer to blob data or %NULL if not found
 
 | 
| /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ | 
| networkconfig.cpp | 341 				char blob[32];  local 344 				snprintf(blob, sizeof(blob),
 345 					 "blob://fast-pac-%d", id);
 346 				setNetworkParam(id, "pac_file", blob, true);
 
 | 
| /external/chromium_org/sync/internal_api/ | 
| sync_encryption_handler_impl.cc | 86       nigori.keystore_decryptor_token().blob().empty()) 730       !nigori.keystore_decryptor_token().blob().empty()) {
 [all...]
 | 
| /device/lge/hammerhead/self-extractors/lge/staging/ | 
| device-partial.mk | 15 # LGE blob(s) necessary for Hammerhead hardware 
 | 
| /external/chromium_org/chrome/browser/sync_file_system/local/ | 
| local_file_change_tracker_unittest.cc | 22 #include "webkit/browser/blob/mock_blob_url_request_context.h" 207   const GURL blob_url("blob:test");
 210   ScopedTextBlob blob(url_request_context, blob_url, kData);
 359   const GURL blob_url("blob:test");
 362   ScopedTextBlob blob(url_request_context, blob_url, kData);
 
 | 
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ | 
| SerializedScriptValue.cpp | 56 #include "core/fileapi/Blob.h" 164 // externally. It is safe to persist a SerializedScriptValue as a binary blob, but this
 193     BlobTag = 'b', // url:WebCoreString, type:WebCoreString, size:uint64_t -> Blob (ref)
 1081  Blob* blob = V8Blob::toNative(value.As<v8::Object>());  local
 [all...]
 | 
| /external/chromium/chrome/browser/sync/protocol/ | 
| proto_value_conversions.cc | 97   // TODO(akalin): Shouldn't blob be of type bytes instead of string? 98   SET_BYTES(blob);
 
 | 
| /external/chromium_org/chrome/browser/resources/translate_internals/ | 
| translate_internals.js | 409       var blob = new Blob([data], {'type': 'text/json'}); 410       var url = webkitURL.createObjectURL(blob);
 
 |