HomeSort by relevance Sort by last modified time
    Searched refs:blob (Results 226 - 250 of 331) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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.
  /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/
syncable_file_operation_runner_unittest.cc 306 ScopedTextBlob blob(url_request_context_, "blob:foo", kData);
313 URL(kFile), blob.GetBlobDataHandle(), 0, GetWriteCallback(FROM_HERE));
local_file_change_tracker_unittest.cc 254 ScopedTextBlob blob(url_request_context, "blob_id:test", kData);
271 URL(kPath4), blob.GetBlobDataHandle()));
405 ScopedTextBlob blob(url_request_context, "blob_id:test", kData);
422 URL(kPath4), blob.GetBlobDataHandle()));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IsolatedFileSystem.js 355 * @param {!Blob} file
430 var blob = new Blob([content], { type: "text/plain" });
431 fileWriter.write(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/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf 388 # Alternatively, a named configuration blob can be used by setting
389 # this to blob://blob_name.
411 # Alternatively, a named configuration blob can be used by setting
412 # this to blob://blob_name.
    [all...]
  /external/chromium_org/v8/tools/profviz/
profviz.js 196 var blob = new Blob([new Uint8Array(args.contents).buffer],
199 ui.plot.src = window.URL.createObjectURL(blob);
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_runner.h 16 #include "webkit/browser/blob/blob_data_handle.h"
111 // |url_request_context| is used to read contents in |blob|.
114 scoped_ptr<webkit_blob::BlobDataHandle> blob,
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.h 158 * set_config_blob - Set or add a named configuration blob
160 * @blob: New value for the blob
162 * Adds a new configuration blob or replaces the current value of an
163 * existing blob.
165 void (*set_config_blob)(void *ctx, struct wpa_config_blob *blob);
168 * get_config_blob - Get a named configuration blob
170 * @name: Name of the blob
171 * 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);
  /system/keymaster/
authorization_set_test.cpp 174 EXPECT_EQ(6U, deserialized[pos].blob.data_length);
175 EXPECT_EQ(0, memcmp(deserialized[pos].blob.data, "my_app", 6));
211 EXPECT_EQ(6U, deserialized[pos].blob.data_length);
212 EXPECT_EQ(0, memcmp(deserialized[pos].blob.data, "my_app", 6));
  /external/chromium_org/sync/internal_api/
sync_encryption_handler_impl.cc 86 nigori.keystore_decryptor_token().blob().empty())
728 !nigori.keystore_decryptor_token().blob().empty()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
SerializedScriptValue.cpp 58 #include "core/fileapi/Blob.h"
172 // externally. It is safe to persist a SerializedScriptValue as a binary blob, but this
201 BlobTag = 'b', // uuid:WebCoreString, type:WebCoreString, size:uint64_t -> Blob (ref)
202 BlobIndexTag = 'i', // index:int32_t -> Blob (ref)
1279 Blob* blob = V8Blob::toNative(value.As<v8::Object>()); local
    [all...]
  /external/chromium_org/ui/file_manager/image_loader/
request.js 198 var parseImage = function(contentType, blob) {
206 reader.readAsDataURL(blob);
236 * @param {function(string, Blob}) onSuccess Success callback with the content
299 * @param {function(string, Blob}) onSuccess Success callback with the content
308 xhr.responseType = 'blob';
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocket.cpp 41 #include "core/fileapi/Blob.h"
49 #include "platform/blob/BlobData.h"
446 void WebSocket::send(Blob* binaryData, ExceptionState& exceptionState)
448 WTF_LOG(Network, "WebSocket %p send() Sending Blob '%s'", this, binaryData->uuid().utf8().data());
536 return "blob";
546 if (binaryType == "blob") {
633 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size)); local
634 m_eventQueue->dispatch(MessageEvent::create(blob.release(), SecurityOrigin::create(m_url)->toString()))
    [all...]
  /external/chromium_org/chrome/browser/resources/feedback/js/
feedback.js 186 * Converts a blob data URL to a blob object.
188 * @return {Blob} Blob object containing the data.
197 return new Blob([new Uint8Array(dataArray)], {type: mimeString});
  /external/chromium_org/chrome/browser/resources/translate_internals/
translate_internals.js 410 var blob = new Blob([data], {'type': 'text/json'});
411 var url = URL.createObjectURL(blob);
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 78 {CAST([Expr $c] AS blob)} \
  /libcore/luni/src/main/java/java/sql/
CallableStatement.java 135 * Gets the value of a specified JDBC {@code BLOB} parameter as a {@code
136 * java.sql.Blob}.
141 * @return a {@code java.sql.Blob} representing the value of the
147 public Blob getBlob(int parameterIndex) throws SQLException;
150 * Gets the value of a specified JDBC {@code BLOB} parameter as a {@code
151 * java.sql.Blob}.
155 * @return a {@code java.sql.Blob} representing the value of the
161 public Blob getBlob(String parameterName) throws SQLException;
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-coretext.cc 106 hb_blob_t *blob = hb_face_reference_blob (face); local
108 const char *blob_data = hb_blob_get_data (blob, &blob_length);
110 DEBUG_MSG (CORETEXT, face, "Face has empty blob");
112 CGDataProviderRef provider = CGDataProviderCreateWithData (blob, blob_data, blob_length, &release_data);
    [all...]

Completed in 593 milliseconds

1 2 3 4 5 6 7 8 91011>>