Searched refs:blob (Results 1 - 25 of 236) sorted by relevance

12345678910

/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A DMKunctrl.awk52 blob=""
65 blob = blob "\""
66 blob = blob "\n \""
95 blob = blob part "\\0";
101 blob = blob "\"";
106 blob
[all...]
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DFileReaderSync.idl37 [CallWith=ScriptExecutionContext, RaisesException] ArrayBuffer readAsArrayBuffer(Blob blob);
38 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsBinaryString(Blob blob);
39 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsText(Blob blob, optional DOMString encoding);
40 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsDataURL(Blob blob);
H A DFileReaderSync.cpp50 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec) argument
52 if (!blob) {
58 startLoading(scriptExecutionContext, loader, blob, ec);
63 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec) argument
65 if (!blob) {
71 startLoading(scriptExecutionContext, loader, blob, ec);
75 String FileReaderSync::readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, const String& encoding, ExceptionCode& ec) argument
77 if (!blob) {
84 startLoading(scriptExecutionContext, loader, blob, ec);
88 String FileReaderSync::readAsDataURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCod argument
101 startLoading(ScriptExecutionContext* scriptExecutionContext, FileReaderLoader& loader, Blob* blob, ExceptionCode& ec) argument
[all...]
H A DFileReader.cpp88 void FileReader::readAsArrayBuffer(Blob* blob, ExceptionCode& ec) argument
90 if (!blob)
93 LOG(FileAPI, "FileReader: reading as array buffer: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? toFile(blob)->path().utf8().data() : "");
95 readInternal(blob, FileReaderLoader::ReadAsArrayBuffer, ec);
98 void FileReader::readAsBinaryString(Blob* blob, ExceptionCode& ec) argument
100 if (!blob)
103 LOG(FileAPI, "FileReader: reading as binary: %s %s\n", blob->url().string().utf8().data(), blob
108 readAsText(Blob* blob, const String& encoding, ExceptionCode& ec) argument
119 readAsText(Blob* blob, ExceptionCode& ec) argument
124 readAsDataURL(Blob* blob, ExceptionCode& ec) argument
134 readInternal(Blob* blob, FileReaderLoader::ReadType type, ExceptionCode& ec) argument
[all...]
H A DWebKitBlobBuilder.cpp112 void BlobBuilder::append(Blob* blob) argument
114 if (!blob)
116 if (blob->isFile()) {
117 File* file = toFile(blob);
118 // If the blob is file that is not snapshoted, capture the snapshot now.
132 long long blobSize = static_cast<long long>(blob->size());
134 m_items.append(BlobDataItem(blob->url(), 0, blobSize));
152 RefPtr<Blob> blob = Blob::create(blobData.release(), m_size); local
154 // After creating a blob from the current blob dat
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DAsyncFileWriterBlackBerry.cpp30 void AsyncFileWriterBlackBerry::write(long long position, Blob* blob) argument
32 ASSERT(blob);
36 // Platform writer will take the ownership of the platform blob and will destroy it on the thread in which we are running.
37 PlatformBlob* platformBlob = new PlatformBlob(blob);
H A DPlatformBlob.h37 PlatformBlob(Blob* blob) argument
40 ASSERT(blob);
41 m_blobData = static_cast<BlobRegistryImpl&>(blobRegistry()).getBlobDataFromURL(blob->url());
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A DsslBER.h49 const SSLBuffer *blob, /* PKCS-1 encoded */
55 * BER-encoded RSA public key blob.
61 SSLBuffer *blob); /* data mallocd and RETURNED */
68 const SSLBuffer *blob, /* PKCS-1 encoded */
73 * Given a prime and generator, cook up a BER-encoded DHParameter blob.
78 SSLBuffer *blob); /* data mallocd and RETURNED */
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A DsslBER.h49 const SSLBuffer *blob, /* PKCS-1 encoded */
55 * BER-encoded RSA public key blob.
61 SSLBuffer *blob); /* data mallocd and RETURNED */
68 const SSLBuffer *blob, /* PKCS-1 encoded */
73 * Given a prime and generator, cook up a BER-encoded DHParameter blob.
78 SSLBuffer *blob); /* data mallocd and RETURNED */
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A DsslBER.h49 const SSLBuffer *blob, /* PKCS-1 encoded */
55 * BER-encoded RSA public key blob.
61 SSLBuffer *blob); /* data mallocd and RETURNED */
68 const SSLBuffer *blob, /* PKCS-1 encoded */
73 * Given a prime and generator, cook up a BER-encoded DHParameter blob.
78 SSLBuffer *blob); /* data mallocd and RETURNED */
/macosx-10.9.5/securityd-55199.3/src/
H A Ddbcrypto.cpp26 // dbcrypto - cryptographic core for database and key blob cryptography
104 void DatabaseCryptoCore::setup(const DbBlob *blob, const CssmData &passphrase) argument
106 if (blob)
107 memcpy(mSalt, blob->salt, sizeof(mSalt));
120 void DatabaseCryptoCore::setup(const DbBlob *blob, CssmClient::Key master) argument
130 if (blob)
131 memcpy(mSalt, blob->salt, sizeof(mSalt));
185 // Encode a database blob from the core.
196 // build the encrypted section blob
211 // allocate the final DbBlob, uh, blob
213 DbBlob *blob = Allocator::standard().malloc<DbBlob>(length); local
250 decodeCore(const DbBlob *blob, void **privateAclBlob) argument
363 KeyBlob *blob = Allocator::standard().malloc<KeyBlob>(length); local
408 decodeKeyCore(KeyBlob *blob, CssmKey &key, void * &pubAcl, void * &privAcl) const argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/
H A DTestOverloadedConstructors.idl31 Constructor(Blob blob),
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dblob.cpp26 // blob - generic extensible binary blob frame
28 #include "blob.h"
57 // Read a blob from a standard file stream.
59 // The blob is allocated with malloc(3).
68 if (BlobCore *blob = (BlobCore *)malloc(header.length())) {
69 memcpy(blob, &header, sizeof(header));
71 if (::pread(fd, blob+1, remainder, offset + sizeof(header)) == ssize_t(remainder))
72 return blob;
73 free(blob);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dblob.cpp26 // blob - generic extensible binary blob frame
28 #include "blob.h"
57 // Read a blob from a standard file stream.
59 // The blob is allocated with malloc(3).
68 if (BlobCore *blob = (BlobCore *)malloc(header.length())) {
69 memcpy(blob, &header, sizeof(header));
71 if (::pread(fd, blob+1, remainder, offset + sizeof(header)) == ssize_t(remainder))
72 return blob;
73 free(blob);
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dubc_subr.c154 * Locate the CodeDirectory from an embedded signature blob
187 * without a blob.
400 cs_validate_blob(const CS_GenericBlob *blob, size_t length) argument
402 if (length < sizeof(CS_GenericBlob) || length < ntohl(blob->length))
428 const CS_GenericBlob *blob = (const CS_GenericBlob *)(void *)addr; local
433 error = cs_validate_blob(blob, length);
437 length = ntohl(blob->length);
439 if (ntohl(blob->magic) == CSMAGIC_EMBEDDED_SIGNATURE) {
440 const CS_SuperBlob *sb = (const CS_SuperBlob *)blob;
474 } else if (ntohl(blob
511 const CS_GenericBlob *blob = (const CS_GenericBlob *)(void *)addr; local
2662 struct cs_blob *blob; local
2777 struct cs_blob *blob, *oblob; local
3078 struct cs_blob *blob; local
3117 struct cs_blob *blob, *next_blob; local
3208 struct cs_blob *blobs, *blob; local
3388 struct cs_blob *blobs, *blob; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSBlobCustom.cpp51 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, Blob* blob) argument
53 if (!blob)
56 if (blob->isFile())
57 return wrap<JSFile>(exec, globalObject, static_cast<File*>(blob));
59 return wrap<JSBlob>(exec, globalObject, blob);
70 RefPtr<Blob> blob = Blob::create(); local
71 return JSValue::encode(CREATE_DOM_WRAPPER(exec, jsConstructor->globalObject(), Blob, blob.get()));
135 RefPtr<Blob> blob = blobBuilder.getBlob(type); local
136 return JSValue::encode(CREATE_DOM_WRAPPER(exec, jsConstructor->globalObject(), Blob, blob.get()));
/macosx-10.9.5/security_systemkeychain-55191.2/src/
H A Dcs_misc.cpp30 #include <security_utilities/blob.h>
86 // kernel returns a blob header with magic == 0, length == needed size
95 const BlobCore *blob = (const BlobCore *)buffer; local
96 if (blob->length() < sizeof(*blob))
97 fail("runt entitlement blob returned from kernel");
98 if (blob->magic() == kSecCodeMagicEntitlement)
99 fwrite(blob+1, blob->length() - sizeof(*blob),
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DFormDataList.h37 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { } argument
40 Blob* blob() const { return m_blob.get(); } function in class:WebCore::FormDataList::Item
66 void appendBlob(const String& key, PassRefPtr<Blob> blob, const String& filename = String()) argument
69 appendBlob(blob, filename);
/macosx-10.9.5/autofs-234/smbremountserver/
H A Dsmbremountserver.c40 * blob of variable size to pass to the SMBRemountServer call. That's
52 void *blob; local
76 blob = malloc(byte_count);
77 if (blob == NULL) {
83 bytes_read = read(0, blob, byte_count);
85 fprintf(stderr, "smbremountserver: Error reading blob: %s\n",
90 fprintf(stderr, "smbremountserver: Read only %zd bytes of %u-byte blob\n",
115 SMBRemountServer(blob, byte_count);
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dacl_codesigning.cpp92 const BlobCore *blob = list[n].data().interpretedAs<const BlobCore>(); local
93 if (blob->length() < sizeof(BlobCore)) {
94 secdebug("csblob", "runt blob (0x%x/%zd) slot %d in CSSM_LIST",
95 blob->magic(), blob->length(), n);
97 } else if (blob->length() != list[n].data().length()) {
98 secdebug("csblob", "badly sized blob (0x%x/%zd) slot %d in CSSM_LIST",
99 blob->magic(), blob->length(), n);
102 subj->add(blob);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dacl_codesigning.cpp92 const BlobCore *blob = list[n].data().interpretedAs<const BlobCore>(); local
93 if (blob->length() < sizeof(BlobCore)) {
94 secdebug("csblob", "runt blob (0x%x/%zd) slot %d in CSSM_LIST",
95 blob->magic(), blob->length(), n);
97 } else if (blob->length() != list[n].data().length()) {
98 secdebug("csblob", "badly sized blob (0x%x/%zd) slot %d in CSSM_LIST",
99 blob->magic(), blob->length(), n);
102 subj->add(blob);
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dsigblob.cpp37 if (const BlobCore *blob = this->find(slot)) {
39 return makeCFData(*blob); // is a native Blob
40 } else if (const BlobWrapper *wrap = BlobWrapper::specific(blob)) {
H A Dcsdatabase.cpp59 identification blob not null unique on conflict replace, \n\
60 signature blob not null, \n\
70 signature blob null \n\
91 // Consult the database to find code by identification blob.
115 // Given a unified detached signature blob, store its data in the database.
136 insertCode(globid, arch, EmbeddedSignatureBlob::specific(dsblob->blob(n)));
145 int64 SignatureDatabaseWriter::insertGlobal(const char *location, const BlobCore *blob) argument
149 if (blob)
150 insert.bind(2).blob(blob, blo
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dsigblob.cpp37 if (const BlobCore *blob = this->find(slot)) {
39 return makeCFData(*blob); // is a native Blob
40 } else if (const BlobWrapper *wrap = BlobWrapper::specific(blob)) {
H A Dcsdatabase.cpp59 identification blob not null unique on conflict replace, \n\
60 signature blob not null, \n\
70 signature blob null \n\
91 // Consult the database to find code by identification blob.
115 // Given a unified detached signature blob, store its data in the database.
136 insertCode(globid, arch, EmbeddedSignatureBlob::specific(dsblob->blob(n)));
145 int64 SignatureDatabaseWriter::insertGlobal(const char *location, const BlobCore *blob) argument
149 if (blob)
150 insert.bind(2).blob(blob, blo
[all...]

Completed in 121 milliseconds

12345678910