/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
Conversation.java | 563 final byte[] blob = ((ConversationCursor) cursor).getCachedBlob( 565 if (blob != null && blob.length > 0) { 566 return ConversationInfo.fromBlob(blob); 584 final byte[] blob = ((ConversationCursor) cursor).getCachedBlob( 586 if (blob != null && blob.length > 0) { 587 return FolderList.fromBlob(blob);
|
/system/nvram/messages/include/nvram/messages/ |
io.h | 25 #include <nvram/messages/blob.h> 121 // Writes a blob of |size| bytes provided in |data| to the underlying buffer. 198 // |Blob|, growing it as necessary. 202 // |blob|, which will get resized as necessary. Note that |blob| must remain 204 explicit BlobOutputStreamBuffer(Blob* blob); 207 // Truncate the blob to match the current output size. 215 Blob* blob_;
|
/external/adhd/scripts/mic_testing/frontend/ |
audio.js | 317 // create WAV download link using audio data blob 332 var blob = recorder.exportWAV(); 333 var url = URL.createObjectURL(blob); 359 var blob = new Blob([content], {type: 'application/octet-stream'}); 360 var url = URL.createObjectURL(blob);
|
/external/harfbuzz_ng/test/api/ |
test-object.c | 69 hb_blob_t *blob = (hb_blob_t *) create_blob (); local 70 hb_face_t *face = hb_face_create (blob, 0); 71 hb_blob_destroy (blob); 169 OBJECT_WITH_IMMUTABILITY (blob),
|
/external/skqp/src/gpu/text/ |
GrAtlasTextBlobVertexRegenerator.cpp | 193 Regenerator::VertexRegenerator(GrAtlasTextBlob* blob, int runIdx, int subRunIdx, 198 , fBlob(blob) 202 , fRun(&blob->fRuns[runIdx]) 203 , fSubRun(&blob->fRuns[runIdx].fSubRunInfo[subRunIdx]) 208 // Because the GrAtlasGlyphCache may evict the strike a blob depends on using for
|
/frameworks/base/core/jni/ |
android_os_HwBlob.h | 57 status_t putBlob(size_t offset, const sp<JHwBlob> &blob);
|
/hardware/interfaces/wifi/1.0/ |
IWifiChip.hal | 281 * @param blob Vector of bytes retrieved from the driver. 283 requestDriverDebugDump() generates (WifiStatus status, vec<uint8_t> blob); 294 * @param blob Vector of bytes retrieved from the driver. 296 requestFirmwareDebugDump() generates (WifiStatus status, vec<uint8_t> blob);
|
/system/keymaster/include/keymaster/contexts/ |
keymaster2_passthrough_context.h | 59 * UpgradeKeyBlob takes an existing blob, parses out key material and constructs a new blob with 67 * ParseKeyBlob takes a blob and extracts authorization sets and key material, returning an 68 * error if the blob fails integrity checking or decryption. Note that the returned key 69 * material may itself be an opaque blob usable only by secure hardware (in the hybrid case). 73 keymaster_error_t ParseKeyBlob(const KeymasterKeyBlob& blob, 81 keymaster_error_t DeleteKey(const KeymasterKeyBlob& /* blob */) const override;
|
/system/nvram/messages/ |
io.cpp | 220 BlobOutputStreamBuffer::BlobOutputStreamBuffer(Blob* blob) 221 : OutputStreamBuffer(blob->data(), blob->size()), blob_(blob) {}
|
nvram_messages.cpp | 19 #include <nvram/messages/blob.h> 177 bool Encode(const Message& msg, Blob* blob) { 178 BlobOutputStreamBuffer stream(blob); 199 template NVRAM_EXPORT bool Encode<Request>(const Request&, Blob*); 203 template NVRAM_EXPORT bool Encode<Response>(const Response&, Blob*);
|
/system/update_engine/payload_generator/ |
ab_generator.cc | 177 // If this is a REPLACE, attempt to reuse portions of the existing blob. 244 // Set the data length to zero so we know to add the blob later. 275 brillo::Blob data(utils::BlocksInExtents(dst_extents) * kBlockSize); 282 brillo::Blob blob; local 285 diff_utils::GenerateBestFullOperation(data, version, &blob, &op_type)); 287 // If the operation doesn't point to a data blob or points to a data blob of 289 if (aop->op.type() != op_type || aop->op.data_length() != blob.size()) { 291 aop->SetOperationBlob(blob, blob_file) [all...] |
ext2_filesystem.cc | 350 brillo::Blob blob; 355 if (!utils::ReadExtents(filename_, extents, &blob, physical_size, 359 string text(blob.begin(), blob.begin() + EXT2_I_SIZE(&ino_data));
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
MatrixCursorTest.java | 70 byte[] blob = {1, 2, 3, 4}; 73 cursor.addRow(new Object[]{blob}); 76 assertThat(cursor.getBlob(0), equalTo(blob));
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
ShadowMatrixCursorTest.java | 89 byte[] blob = {1, 2, 3, 4}; 92 cursor.addRow(new Object[]{blob}); 95 assertThat(cursor.getBlob(0)).isEqualTo(blob);
|
/external/skia/gm/ |
textblob.cpp | 96 sk_sp<SkTextBlob> blob(this->makeBlob(b)); 102 canvas->drawTextBlob(blob, offset.x(), offset.y(), p); 106 SkRect box = blob->bounds();
|
/external/skqp/gm/ |
textblob.cpp | 96 sk_sp<SkTextBlob> blob(this->makeBlob(b)); 102 canvas->drawTextBlob(blob, offset.x(), offset.y(), p); 106 SkRect box = blob->bounds();
|
/hardware/google/av/codec2/hidl/1.0/utils/ |
types.cpp | [all...] |
/external/google-breakpad/src/client/linux/minidump_writer/ |
minidump_writer.cc | [all...] |
/frameworks/base/services/core/java/com/android/server/locksettings/ |
SyntheticPasswordManager.java | 78 * for each SP blob under the user (stored under the corresponding handle): 593 * Create a new password based SP blob based on the supplied authentication token, such that 597 * This method only creates SP blob wrapping around the given synthetic password and does not [all...] |
/system/keymaster/tests/ |
android_keymaster_test_utils.cpp | 69 if (!param.blob.data) 72 for (size_t i = 0; i < param.blob.data_length; ++i) 73 os << std::hex << std::setw(2) << static_cast<int>(param.blob.data[i]) << std::dec; 77 if (!param.blob.data) 80 for (size_t i = 0; i < param.blob.data_length; ++i) 81 os << std::hex << std::setw(2) << static_cast<int>(param.blob.data[i]) << std::dec; 110 if ((a.blob.data == NULL || b.blob.data == NULL) && a.blob.data != b.blob.data [all...] |
/frameworks/base/core/jni/android/graphics/ |
Bitmap.cpp | 1079 android::Parcel::ReadableBlob blob; local 1216 android::Parcel::WritableBlob blob; local [all...] |
/hardware/interfaces/keymaster/4.0/support/ |
Keymaster3.cpp | 50 converted.blob = param.blob; 59 converted.blob = param.blob; 92 converted[params.size()].blob = authToken2HidlVec(authToken);
|
/external/skia/src/core/ |
SkTextBlob.cpp | 111 // Each run record describes a text blob run, and can be used to determine the (implicit) 215 static const RunRecord* First(const SkTextBlob* blob) { 216 // The first record (if present) is stored following the blob object. 217 return reinterpret_cast<const RunRecord*>(blob + 1); 246 kLast_Flag = 0x04, // set for the last blob run 350 SkTextBlobRunIterator::SkTextBlobRunIterator(const SkTextBlob* blob) 351 : fCurrentRun(SkTextBlob::RunRecord::First(blob)) { 352 SkDEBUGCODE(fStorageTop = (uint8_t*)blob + blob->fStorageSize;) 429 // The easiest way to accomplish that is to use the blob destructor 723 SkTextBlob* blob = new (fStorage.release()) SkTextBlob(fBounds); local [all...] |
/external/skqp/src/core/ |
SkTextBlob.cpp | 111 // Each run record describes a text blob run, and can be used to determine the (implicit) 215 static const RunRecord* First(const SkTextBlob* blob) { 216 // The first record (if present) is stored following the blob object. 217 return reinterpret_cast<const RunRecord*>(blob + 1); 246 kLast_Flag = 0x04, // set for the last blob run 350 SkTextBlobRunIterator::SkTextBlobRunIterator(const SkTextBlob* blob) 351 : fCurrentRun(SkTextBlob::RunRecord::First(blob)) { 352 SkDEBUGCODE(fStorageTop = (uint8_t*)blob + blob->fStorageSize;) 429 // The easiest way to accomplish that is to use the blob destructor 723 SkTextBlob* blob = new (fStorage.release()) SkTextBlob(fBounds); local [all...] |
/system/keymaster/ng/ |
AndroidKeymaster4Device.cpp | 105 keymaster_param_blob(tag, &keyParams[i].blob[0], keyParams[i].blob.size()); 123 inline hidl_vec<uint8_t> kmBlob2hidlVec(const keymaster_key_blob_t& blob) { 125 result.setToExternal(const_cast<unsigned char*>(blob.key_material), blob.key_material_size); 129 inline hidl_vec<uint8_t> kmBlob2hidlVec(const keymaster_blob_t& blob) { 131 result.setToExternal(const_cast<unsigned char*>(blob.data), blob.data_length); 186 result[i].blob.setToExternal(const_cast<unsigned char*>(params[i].blob.data) [all...] |