HomeSort by relevance Sort by last modified time
    Searched refs:blob (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/wpa_supplicant/
config_none.c 41 struct wpa_config_blob *blob; local
52 for (blob = config->blobs; blob; blob = blob->next) {
config_file.c 192 struct wpa_config_blob *blob; local
198 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
211 "blob", *line);
221 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
227 blob = os_zalloc(sizeof(*blob));
228 if (blob == NULL) {
232 blob->name = os_strdup(name);
233 blob->data = base64_decode(encoded, encoded_len, &blob->len)
294 struct wpa_config_blob *blob; local
703 struct wpa_config_blob *blob; local
    [all...]
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...]
config.c 1378 struct wpa_config_blob *blob, *prevblob; local
1691 struct wpa_config_blob *blob = config->blobs; local
    [all...]
ctrl_iface_dbus_handlers.c 1230 struct wpa_config_blob *blob; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
config_none.c 41 struct wpa_config_blob *blob; local
52 for (blob = config->blobs; blob; blob = blob->next) {
config.h 348 struct wpa_config_blob *blob);
349 void wpa_config_free_blob(struct wpa_config_blob *blob);
config_file.c 196 struct wpa_config_blob *blob; local
202 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
215 "blob", *line);
225 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
231 blob = os_zalloc(sizeof(*blob));
232 if (blob == NULL) {
236 blob->name = os_strdup(name);
237 blob->data = base64_decode(encoded, encoded_len, &blob->len)
253 struct wpa_config_blob *blob; local
915 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...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/
Blob.java 7 * SQLite 3.4.0 incremental blob I/O interface.
13 * Blob instance
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) {
29 this.blob = blob;
35 int ret = blob.size - pos
158 private Blob blob; field in class:BlobW
    [all...]
  /frameworks/base/cmds/keystore/
keystore.c 146 /* Here is the file format. There are two parts in blob.value, the secret and
148 * can be found in blob.length. The description is stored after the secret in
149 * plaintext, and its size is specified in blob.info. The total size of the two
152 * than blob.info, blob.length, and blob.value are modified by encrypt_blob()
166 } blob; variable in typeref:struct:__anon8789
174 if (read(the_entropy, blob.vector, AES_BLOCK_SIZE) != AES_BLOCK_SIZE) {
178 length = blob.length + (blob.value - blob.encrypted)
    [all...]
  /external/libvpx/examples/includes/
vp8_doc_tools.php 134 * @param $blob str - The blob to transform
141 function do_geshi($blob, $open = '<pre>',
148 while (preg_match($regexp, $blob, $matches))
157 $blob = preg_replace($regexp, $blob_new, $blob, 1); variable
  /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/webkit/WebCore/platform/sql/
SQLiteStatement.cpp 138 int SQLiteStatement::bindBlob(int index, const void* blob, int size)
143 ASSERT(blob);
149 return sqlite3_bind_blob(m_statement, index, blob, size, SQLITE_TRANSIENT);
326 const void* blob = sqlite3_column_blob(m_statement, col); local
327 if (!blob) {
335 result[i] = ((const unsigned char*)blob)[i];
358 const void* blob = sqlite3_column_blob(m_statement, col); local
359 if (!blob)
363 return blob;
SQLiteStatement.h 43 int bindBlob(int index, const void* blob, int size);
  /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...]
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 120 // put blob
121 byte[] blob = new byte[1000];
123 Arrays.fill(blob, value);
124 assertTrue(window.putBlob(blob, 0, 6));
125 assertTrue(Arrays.equals(blob, window.getBlob(0, 6)));
  /libcore/luni/src/test/java/tests/SQLite/
BlobTest.java 19 import SQLite.Blob;
38 @TestTargetClass(Blob.class)
41 private static Blob testBlob = null;
51 public class MockBlob extends Blob {
63 testBlob = new Blob();
70 db.exec("create table B(id integer primary key, val blob)",null);
75 // can not fill Blob with data at this point...
83 .getResourceAsStream("/blob.c");
109 * @tests Blob#Blob()
138 Blob blob = db.open_blob(dbFile.getPath(), "B", "val", 1, true); local
    [all...]
  /external/chromium/base/crypto/
rsa_private_key_win.cc 60 scoped_array<BYTE> blob(new BYTE[blob_size]);
62 uint8* dest = blob.get();
96 READ_ASSERT(dest == blob.get() + blob_size);
133 scoped_array<uint8> blob(new uint8[blob_length]);
134 if (!CryptExportKey(key_, NULL, PRIVATEKEYBLOB, 0, blob.get(),
140 uint8* pos = blob.get();
  /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...]
  /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");
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleWithInternalScroll.java 56 mTextBlob = (TextView) findViewById(R.id.blob);
  /external/dropbear/
keyimport.c 345 /* Simple structure to point to an mp-int within a blob. */
468 errmsg = "Encrypted key blob is not a multiple of cipher block size";
557 * Now decrypt the key blob.
568 * Now we have a decrypted key blob, which contains an ASN.1
571 * We expect the whole key blob to be formatted as a SEQUENCE
573 * the blob is part of the sequence). Within that SEQUENCE we
602 * Space to create key blob in.
736 * key blob, and also decide on the header line.
977 * The format of the base64 blob is largely ssh2-packet-formatted,
982 * So. The blob contains
    [all...]

Completed in 516 milliseconds

1 2 3