/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/ |
CodedInputStreamTest.java | 350 // Allocate and initialize a 1MB blob. 351 byte[] blob = new byte[1 << 20]; 352 for (int i = 0; i < blob.length; i++) { 353 blob[i] = (byte)i; 359 builder.setOptionalBytes(ByteString.copyFrom(blob));
|
/external/harfbuzz_ng/ |
Android.mk | 30 src/hb-blob.cc \
|
/external/harfbuzz_ng/src/ |
hb-font-private.hh | 115 hb_blob_t *blob; local 120 blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data); 121 if (unlikely (!blob)) 124 return 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_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 | 363 void eap_set_config_blob(struct eap_sm *sm, struct wpa_config_blob *blob);
|
/frameworks/base/core/jni/android/graphics/ |
Bitmap.cpp | 510 android::Parcel::ReadableBlob blob;
local 511 android::status_t status = p->readBlob(size, &blob);
513 doThrowRE(env, "Could not read bitmap from parcel blob.");
519 memcpy(bitmap->getPixels(), blob.data(), size);
522 blob.release();
561 android::Parcel::WritableBlob blob;
local 562 android::status_t status = p->writeBlob(size, &blob);
564 doThrowRE(env, "Could not write bitmap to parcel blob.");
571 memset(blob.data(), 0, size);
573 memcpy(blob.data(), pSrc, size); [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
config.c | 1844 struct wpa_config_blob *blob, *prevblob; local 2546 struct wpa_config_blob *blob = config->blobs; local [all...] |
preauth_test.c | 166 struct wpa_config_blob *blob) 169 wpa_config_set_blob(wpa_s->conf, blob);
|
wpa_supplicant.conf | 369 # Alternatively, a named configuration blob can be used by setting 370 # this to blob://blob_name. 392 # Alternatively, a named configuration blob can be used by setting 393 # this to blob://blob_name. 705 # Alternatively, a named configuration blob can be used by setting this 706 # to blob://<blob name>. [all...] |
/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/chromium_org/third_party/WebKit/Source/core/fileapi/ |
FileReaderLoader.cpp | 36 #include "core/fileapi/Blob.h" 82 // The blob is read by routing through the request handling layer given a temporary public url. 111 void FileReaderLoader::start(ScriptExecutionContext* scriptExecutionContext, const Blob& blob) 113 startForURL(scriptExecutionContext, blob.url());
|
/packages/apps/Email/tests/src/com/android/email/activity/ |
ContactStatusLoaderTest.java | 179 public PhotoCursor(byte[] blob) { 181 mBlob = blob;
|
/external/chromium/net/http/ |
http_response_headers.cc | 185 std::string blob; local 186 blob.reserve(raw_headers_.size()); 191 blob.assign(raw_headers_.c_str(), strlen(raw_headers_.c_str()) + 1); 206 blob.append(parsed_[i].name_begin, parsed_[k].value_end); 207 blob.push_back('\0'); 212 blob.push_back('\0'); 214 pickle->WriteString(blob); [all...] |
/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 98 // blob header offset 363 throw new RuntimeException("blob is too large!"); 404 public byte[] buffer; // input/output: the buffer to store the blob 405 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 | 398 hb_blob_t *blob = NULL; 400 /* Create the blob */ 465 blob = hb_blob_create (font_data, len, mm, user_data, destroy); 469 hb_face_t *face = hb_face_create (blob, face_index); 470 hb_blob_destroy (blob);
|
/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));
|
/external/openssh/ |
ssh-keygen.c | 265 u_char *blob; local 268 if (key_to_blob(k, &blob, &len) <= 0) { 280 dump_base64(stdout, blob, len); 283 xfree(blob); 384 do_convert_private_ssh2_from_blob(u_char *blob, u_int blen) 395 buffer_append(&b, blob, blen); 466 "remaining bytes in key blob %d", rlen); 512 u_char blob[8096]; local 546 blen = uudecode(encoded, blob, sizeof(blob)); [all...] |
/device/lge/mako/self-extractors/lge/staging/ |
device-partial.mk | 15 # LGE blob(s) necessary for Mako hardware
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8TestOverloadedConstructors.cpp | 92 V8TRYCATCH_VOID(Blob*, blob, V8Blob::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Blob::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0); 94 RefPtr<TestOverloadedConstructors> impl = TestOverloadedConstructors::create(blob);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
IsolatedFileSystem.js | 301 * @param {!Blob} file 368 var blob = new Blob([content], { type: "text/plain" }); 369 fileWriter.write(blob);
|
/external/harfbuzz_ng/contrib/python/lib/ |
harfbuzz.pyx | 84 cdef extern from "hb-blob.h" : 87 # do I need blob functions here? 96 hb_face_t * hb_face_create_for_data(hb_blob_t *blob, unsigned int index)
|