HomeSort by relevance Sort by last modified time
    Searched refs:blob (Results 26 - 50 of 160) sorted by null

12 3 4 5 6 7

  /external/wpa_supplicant/
config.h 25 * struct wpa_config_blob - Named configuration blob
33 * name - Blob name
48 * next - Pointer to next blob in the configuration
295 struct wpa_config_blob *blob);
296 void wpa_config_free_blob(struct wpa_config_blob *blob);
config_winreg.c 53 struct wpa_config_blob *blob; local
94 wpa_printf(MSG_MSGDUMP, "blob %d: field='%s' len %d",
97 blob = os_zalloc(sizeof(*blob));
98 if (blob == NULL) {
102 blob->name = os_strdup((char *) name);
103 blob->data = os_malloc(datalen);
104 if (blob->name == NULL || blob->data == NULL) {
105 wpa_config_free_blob(blob);
840 struct wpa_config_blob *blob; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
config.h 348 struct wpa_config_blob *blob);
349 void wpa_config_free_blob(struct wpa_config_blob *blob);
config_file.c 194 struct wpa_config_blob *blob; local
200 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
213 "blob", *line);
223 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
229 blob = os_zalloc(sizeof(*blob));
230 if (blob == NULL) {
234 blob->name = os_strdup(name);
235 blob->data = base64_decode(encoded, encoded_len, &blob->len)
251 struct wpa_config_blob *blob; local
908 struct wpa_config_blob *blob; local
    [all...]
config_winreg.c 58 struct wpa_config_blob *blob; local
99 wpa_printf(MSG_MSGDUMP, "blob %d: field='%s' len %d",
102 blob = os_zalloc(sizeof(*blob));
103 if (blob == NULL) {
107 blob->name = os_strdup((char *) name);
108 blob->data = os_malloc(datalen);
109 if (blob->name == NULL || blob->data == NULL) {
110 wpa_config_free_blob(blob);
936 struct wpa_config_blob *blob; local
    [all...]
  /external/webkit/LayoutTests/storage/
sql-data-types.js 19 blob: "supercalifragilistic"
40 i = "blob"; shouldBeSameTypeAndValue(i, testValues[i], rs[i]);
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
61 [testValues.id, testValues.real, testValues.timestamp, testValues.text, testValues.blob],
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
  /external/chromium/chrome/common/
sqlite_utils.cc 326 int SQLStatement::bind_blob(int index, std::vector<unsigned char>* blob) {
327 if (blob) {
328 const void* value = blob->empty() ? NULL : &(*blob)[0];
329 int len = static_cast<int>(blob->size());
405 std::vector<unsigned char>* blob) {
409 blob->resize(len);
410 if (blob->size() != len) {
414 memcpy(&(blob->front()), p, len);
418 bool SQLStatement::column_blob_as_string(int index, std::string* blob) {
    [all...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteStatement.cpp 165 int SQLiteStatement::bindBlob(int index, const void* blob, int size)
170 ASSERT(blob);
176 return sqlite3_bind_blob(m_statement, index, blob, size, SQLITE_TRANSIENT);
383 const void* blob = sqlite3_column_blob(m_statement, col); local
384 if (!blob)
392 return String(static_cast<const UChar*>(blob), size / sizeof(UChar));
409 const void* blob = sqlite3_column_blob(m_statement, col); local
410 if (!blob) {
418 result[i] = (static_cast<const unsigned char*>(blob))[i];
441 const void* blob = sqlite3_column_blob(m_statement, col) local
    [all...]
  /hardware/ril/mock-ril/src/cpp/
node_buffer.cpp 82 // Each javascript Buffer object is backed by a Blob object.
83 // the Blob is just a C-level chunk of bytes.
90 typedef struct Blob_ Blob;
93 static inline Blob * blob_new(size_t length) {
95 Blob * blob = (Blob*) malloc(sizeof(Blob)); local
96 if (!blob) return NULL;
98 blob->data = (char*) malloc(length)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_fast_pac.c 270 if (os_strncmp(pac_file, "blob://", 7) == 0) {
271 const struct wpa_config_blob *blob; local
272 blob = eap_get_config_blob(sm, pac_file + 7);
273 if (blob == NULL) {
274 wpa_printf(MSG_INFO, "EAP-FAST: No PAC blob '%s' - "
280 rc->pos = (char *) blob->data;
281 rc->end = (char *) blob->data + blob->len;
413 * @pac_file: Name of the PAC file/blob to load
536 if (os_strncmp(pac_file, "blob://", 7) == 0)
537 struct wpa_config_blob *blob; local
751 const struct wpa_config_blob *blob = NULL; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_fast_pac.c 270 if (os_strncmp(pac_file, "blob://", 7) == 0) {
271 const struct wpa_config_blob *blob; local
272 blob = eap_get_config_blob(sm, pac_file + 7);
273 if (blob == NULL) {
274 wpa_printf(MSG_INFO, "EAP-FAST: No PAC blob '%s' - "
280 rc->pos = (char *) blob->data;
281 rc->end = (char *) blob->data + blob->len;
413 * @pac_file: Name of the PAC file/blob to load
538 if (os_strncmp(pac_file, "blob://", 7) == 0)
539 struct wpa_config_blob *blob; local
753 const struct wpa_config_blob *blob = NULL; local
    [all...]
  /external/webkit/Source/WebCore/platform/network/
FormData.cpp 136 #if ENABLE(BLOB)
142 #if ENABLE(BLOB)
164 #if ENABLE(BLOB)
171 #if ENABLE(BLOB)
202 // If the current type is blob, then we also need to include the filename
203 if (value.blob()) {
205 if (value.blob()->isFile()) {
206 // For file blob, use the filename (or relative path if it is present) as the name.
207 File* file = static_cast<File*>(value.blob());
224 // For non-file blob, use the identifier part of the URL as the name
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_proto_util.cc 307 syncable::Blob* blob) {
308 syncable::Blob proto_blob(proto_bytes.begin(), proto_bytes.end());
309 blob->swap(proto_blob);
314 const syncable::Blob& blob) {
315 if (proto_bytes.size() != blob.size())
317 return std::equal(proto_bytes.begin(), proto_bytes.end(), blob.begin());
321 void SyncerProtoUtil::CopyBlobIntoProtoBytes(const syncable::Blob& blob,
    [all...]
  /external/chromium/crypto/
rsa_private_key_win.cc 66 scoped_array<BYTE> blob(new BYTE[blob_size]);
68 uint8* dest = blob.get();
103 READ_ASSERT(dest == blob.get() + blob_size);
143 scoped_array<uint8> blob(new uint8[blob_length]);
144 if (!CryptExportKey(key_, 0, PRIVATEKEYBLOB, 0, blob.get(), &blob_length)) {
149 uint8* pos = blob.get();
  /external/wpa_supplicant_8/wpa_supplicant/
config_winreg.c 58 struct wpa_config_blob *blob; local
99 wpa_printf(MSG_MSGDUMP, "blob %d: field='%s' len %d",
102 blob = os_zalloc(sizeof(*blob));
103 if (blob == NULL) {
107 blob->name = os_strdup((char *) name);
108 blob->data = os_malloc(datalen);
109 if (blob->name == NULL || blob->data == NULL) {
110 wpa_config_free_blob(blob);
981 struct wpa_config_blob *blob; local
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtils_InsertHelperTest.java 159 " blob_value BLOB, null_value TEXT);");
199 byte[] blob = new byte[] { '1', '2', '3' };
200 mInsertHelper.bind(mInsertHelper.getColumnIndex("blob_value"), blob);
216 MoreAsserts.assertEquals(blob, value);
233 values.put("blob_value", blob);
248 MoreAsserts.assertEquals(blob, value);
319 " blob_value BLOB, null_value TEXT);");
353 byte[] blob = new byte[] { '1', '2', '3' };
354 mInsertHelper.bind(mInsertHelper.getColumnIndex("blob_value"), blob);
370 MoreAsserts.assertEquals(blob, value)
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 256 byte[] blob = mBookmarks.getBlob(BOOKMARK_INDEX_THUMBNAIL);
258 if (blob != null && blob.length > 0) {
260 blob, 0, blob.length, options);
266 blob = mBookmarks.getBlob(BOOKMARK_INDEX_FAVICON);
267 if (blob != null && blob.length > 0) {
269 blob, 0, blob.length, options)
    [all...]
  /dalvik/tests/044-proxy/src/
BasicTest.java 44 shapes.blob();
52 colors.blob();
120 public String blob(); method in interface:Shapes
144 public String blob(); method in interface:Colors
176 public String blob() { method in class:Mix
177 System.out.println("--- blob");
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 87 Blob* blob = xmlHttpRequest->responseBlob(ec); local
92 return toV8(blob);
98 #if ENABLE(WEBGL) || ENABLE(BLOB)
188 Blob* blob = V8Blob::toNative(object); local
189 ASSERT(blob);
190 xmlHttpRequest->send(blob, ec);
196 #if ENABLE(WEBGL) || ENABLE(BLOB)
  /device/samsung/crespo/self-extractors/akm/staging/
device-crespo.mk 17 # AKM blob necessary for Nexus S hardware
  /device/samsung/crespo/self-extractors/cypress/staging/
device-crespo.mk 17 # cypress blob necessary for Nexus S hardware
  /device/samsung/crespo/self-extractors/nxp/staging/
device-crespo.mk 17 # NXP blob necessary for Nexus S hardware
  /device/samsung/crespo4g/self-extractors/akm/staging/
device-crespo4g.mk 17 # AKM blob necessary for Nexus S hardware
  /device/samsung/crespo4g/self-extractors/cypress/staging/
device-crespo4g.mk 17 # cypress blob necessary for Nexus S hardware
  /device/samsung/crespo4g/self-extractors/nxp/staging/
device-crespo4g.mk 17 # NXP blob necessary for Nexus S hardware

Completed in 1939 milliseconds

12 3 4 5 6 7