| /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...]
 | 
| /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) {
 
 | 
| /external/wpa_supplicant_8/wpa_supplicant/ | 
| config_none.c | 41 	struct wpa_config_blob *blob;  local 52 	for (blob = config->blobs; blob; blob = blob->next) {
 
 | 
| config_file.c | 193 	struct wpa_config_blob *blob;  local 199 	wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
 212 				   "blob", *line);
 222 		wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
 228 	blob = os_zalloc(sizeof(*blob));
 229 	if (blob == NULL) {
 233 	blob->name = os_strdup(name);
 234 	blob->data = base64_decode(encoded, encoded_len, &blob->len)
 250  struct wpa_config_blob *blob;  local
 717  struct wpa_config_blob *blob;  local
 [all...]
 | 
| /external/webkit/Source/WebCore/fileapi/ | 
| FileReaderSync.cpp | 33 #if ENABLE(BLOB) 38 #include "Blob.h"
 50 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
 52     if (!blob)
 56     startLoading(scriptExecutionContext, loader, blob, ec);
 61 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
 63     if (!blob)
 67     startLoading(scriptExecutionContext, loader, blob, ec)
 [all...]
 | 
| FileReader.cpp | 33 #if ENABLE(BLOB) 79 void FileReader::readAsArrayBuffer(Blob* blob)
 81     if (!blob)
 84     LOG(FileAPI, "FileReader: reading as array buffer: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? static_cast<File*>(blob)->path().utf8().data() : "");
 86     readInternal(blob, FileReaderLoader::ReadAsArrayBuffer);
 89 void FileReader::readAsBinaryString(Blob* blob)
 [all...]
 | 
| FileReaderSync.idl | 33         Conditional=BLOB, 37         [CallWith=ScriptExecutionContext] ArrayBuffer readAsArrayBuffer(in Blob blob)
 39         [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsBinaryString(in Blob blob)
 41         [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsText(in Blob blob, in [Optional] DOMString encoding)
 43         [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsDataURL(in Blob blob)
 
 | 
| FileReader.idl | 33         Conditional=BLOB, 47         void readAsArrayBuffer(in Blob blob);
 48         void readAsBinaryString(in Blob blob);
 49         void readAsText(in Blob blob, in [Optional] DOMString encoding);
 50         void readAsDataURL(in Blob blob);
 
 | 
| WebKitBlobBuilder.cpp | 36 #include "Blob.h" 88 #if ENABLE(BLOB)
 100 void WebKitBlobBuilder::append(Blob* blob)
 102     if (!blob)
 104     if (blob->isFile()) {
 105         // If the blob is file that is not snapshoted, capture the snapshot now.
 107         File* file = static_cast<File*>(blob);
 115         long long blobSize = static_cast<long long>(blob->size());
 117         m_items.append(BlobDataItem(blob->url(), 0, blobSize))
 127  RefPtr<Blob> blob = Blob::create(blobData.release(), m_size);  local
 [all...]
 | 
| FileReaderSync.h | 34 #if ENABLE(BLOB) 44 class Blob;
 57     PassRefPtr<ArrayBuffer> readAsArrayBuffer(ScriptExecutionContext*, Blob*, ExceptionCode&);
 58     String readAsBinaryString(ScriptExecutionContext*, Blob*, ExceptionCode&);
 59     String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
 61         return readAsText(scriptExecutionContext, blob, "", ec);
 63     String readAsText(ScriptExecutionContext*, Blob*, const String& encoding, ExceptionCode&);
 64     String readAsDataURL(ScriptExecutionContext*, Blob*, ExceptionCode&);
 69     void startLoading(ScriptExecutionContext*, FileReaderLoader&, Blob*, ExceptionCode&)
 [all...]
 | 
| WebKitBlobBuilder.idl | 38         Blob getBlob(in [Optional, ConvertUndefinedOrNullToNullString] DOMString contentType); 40         void append(in Blob blob);
 
 | 
| /external/javasqlite/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;
 39 	int ret = blob.size - pos
 162  private Blob blob;  field in class:BlobW
 [all...]
 | 
| /external/webkit/Source/WebCore/html/ | 
| DOMURL.idl | 28         Conditional=BLOB, 34         [ConvertNullStringTo=Undefined] DOMString createObjectURL(in Blob blob);
 
 | 
| FormDataList.cpp | 44 void FormDataList::appendBlob(PassRefPtr<Blob> blob) 46     m_items.append(blob);
 
 | 
| FormDataList.h | 24 #include "Blob.h" 37         Item(PassRefPtr<Blob> blob) : m_blob(blob) { }
 40         Blob* blob() const { return m_blob.get(); }  function in class:WebCore::FormDataList::Item
 44         RefPtr<Blob> m_blob;
 64     void appendBlob(const String& key, PassRefPtr<Blob> blob)
 67         appendBlob(blob);
 [all...]
 | 
| DOMFormData.cpp | 34 #include "Blob.h" 66 void DOMFormData::append(const String& name, Blob* blob)
 69         appendBlob(name, blob);
 
 | 
| DOMURL.cpp | 28 #if ENABLE(BLOB) 56 String DOMURL::createObjectURL(Blob* blob)
 60     return m_scriptExecutionContext->createPublicBlobURL(blob).string();
 72 #endif // ENABLE(BLOB)
 
 | 
| AsyncImageResizer.h | 36 #include "Blob.h" 57             , blob(0)
 62         RefPtr<Blob> blob;  member in struct:WebCore::AsyncImageResizer::CallbackInfo
 85     void resizeComplete(RefPtr<Blob>) { /* FIXME: Not yet implemented. */ }
 
 | 
| ImageResizerThread.cpp | 46     if (!callbackInfo->blob) 49         callbackInfo->asyncImageResizer->resizeComplete(callbackInfo->blob);
 87     // FIXME: Do resizing, create blob, and catch any errors.
 
 | 
| /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
 
 | 
| /frameworks/base/core/tests/coretests/src/android/database/ | 
| CursorWindowTest.java | 72         // put blob 73         byte[] blob = new byte[1000];
 75         Arrays.fill(blob, value);
 76         assertTrue(window.putBlob(blob, 0, 6));
 77         assertTrue(Arrays.equals(blob, window.getBlob(0, 6)));
 
 | 
| /libcore/luni/src/test/java/libcore/sqlite/ | 
| OldBlobTest.java | 19 import SQLite.Blob; 29     private static Blob testBlob = null;
 35         testBlob = new Blob();
 42         db.exec("create table B(id integer primary key, val blob)",null);
 47         // can not fill Blob with data at this point...
 55                     .getResourceAsStream("/blob.c");
 86         Blob blob = db.open_blob(dbFile.getPath(), "B", "val", 1, true);  local
 89         OutputStream os = blob.getOutputStream();
 93         InputStream is = blob.getInputStream()
 [all...]
 | 
| /external/webkit/Source/WebCore/bindings/v8/custom/ | 
| V8DOMFormDataCustom.cpp | 73         Blob* blob = V8Blob::toNative(object);  local 74         ASSERT(blob);
 75         domFormData->append(name, blob);
 
 | 
| /external/chromium/chrome/browser/sync/engine/ | 
| syncer_proto_util.h | 12 #include "chrome/browser/sync/syncable/blob.h" 63                                      syncable::Blob* blob);
 65                                    const syncable::Blob& blob);
 66   static void CopyBlobIntoProtoBytes(const syncable::Blob& blob,
 
 |