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

1 2

  /external/wpa_supplicant/
config_none.c 41 struct wpa_config_blob *blob; local
52 for (blob = config->blobs; blob; blob = blob->next) {
eap_tls_common.c 29 const struct wpa_config_blob *blob; local
31 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
34 blob = eap_get_config_blob(sm, *name + 7);
35 if (blob == NULL) {
36 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
41 *data = blob->data;
42 *data_len = blob->len;
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_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...]
ctrl_iface_dbus_handlers.c 1230 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...]
tls_openssl.c 338 CRYPT_HASH_BLOB blob; local
346 blob.cbData = len;
347 blob.pbData = buf;
352 &blob, NULL);
    [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_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...]
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...]
ctrl_iface_dbus_handlers.c 1390 struct wpa_config_blob *blob; local
    [all...]
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
JDBCPreparedStatement.java 9 boolean blob; field in class:BatchArg
11 BatchArg(String arg, boolean blob) {
17 this.blob = blob;
391 blobs[i] = b.blob;
422 public void setBlob(int i, Blob x) throws SQLException {
694 public Blob getBlob(String parameterName) throws SQLException {
698 public Blob getBlob(int parameterIndex) throws SQLException {
  /dalvik/libcore/sql/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...]
Database.java 496 * Open an SQLite3 blob. Only available in SQLite 3.4.0 and above.
502 * @return a Blob object
505 public Blob open_blob(String db, String table, String column,
508 Blob blob = new Blob(); local
509 _open_blob(db, table, column, row, rw, blob);
510 return blob;
550 * Internal SQLite open blob method.
556 * @param blob Blob objec
    [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");
  /dalvik/libcore/sql/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...]
DatabaseTest.java 42 import SQLite.Blob;
214 final String resourceName = "blob.c";
217 .getResource("/blob.c");
1609 Blob blob; local
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 153 Blob* blob = V8Blob::toNative(object); local
154 ASSERT(blob);
155 xmlHttpRequest->send(blob, ec);
  /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;
  /frameworks/base/core/jni/
android_database_SQLiteQuery.cpp 208 LOGE("Failed allocating %u bytes for text/blob at %d,%d", size,
242 // BLOB data
243 uint8_t const * blob = (uint8_t const *)sqlite3_column_blob(statement, i); local
248 LOGE("Failed allocating %u bytes for blob at %d,%d", size,
253 window->copyIn(offset, blob, size);
262 LOG_WINDOW("%d,%d is Blob with %u bytes @ %d", startPos + numRows, i, size, offset);
  /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...]
eap_tls_common.c 28 const struct wpa_config_blob *blob; local
30 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
33 blob = eap_get_config_blob(sm, *name + 7);
34 if (blob == NULL) {
35 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
41 *data = blob->data;
42 *data_len = blob->len;
118 * Use blob data, if available. Otherwise, leave reference to external
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
networkconfig.cpp 328 char blob[32]; local
331 snprintf(blob, sizeof(blob),
332 "blob://fast-pac-%d", id);
333 setNetworkParam(id, "pac_file", blob, true);
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 488 executeSQLCommand("CREATE TABLE IF NOT EXISTS CacheResourceData (id INTEGER PRIMARY KEY AUTOINCREMENT, data BLOB)");
505 // When a cache resource is deleted, its data blob should also be deleted.
842 Vector<char> blob; local
843 cacheStatement.getColumnBlobAsVector(5, blob);
845 RefPtr<SharedBuffer> data = SharedBuffer::adoptVector(blob);
    [all...]
  /frameworks/base/cmds/keystore/
keystore.c 161 } blob; variable in typeref:struct:__anon7066
173 length = blob.length + blob.value - blob.encrypted;
176 blob.length = htonl(blob.length);
177 MD5(blob.digested, length - (blob.digested - blob.encrypted), blob.digest)
    [all...]

Completed in 2967 milliseconds

1 2