/external/skia/gm/ |
textblob.cpp | 95 SkAutoTUnref<const SkTextBlob> blob(this->makeBlob(b)); 101 canvas->drawTextBlob(blob, offset.x(), offset.y(), p); 105 SkRect box = blob->bounds();
|
/system/bt/service/ |
gatt_server_old.cpp | 86 std::vector<uint8_t> blob; member in struct:bluetooth::gatt::Characteristic 88 // Support synchronized blob updates by latching under mutex. 168 // Latch next_blob to blob on a 'fresh' read. 171 std::swap(ch.blob, ch.next_blob); 176 std::min(ch.blob.size(), ch.blob_section * kMaxGattAttributeSize); 177 const size_t blob_remaining = ch.blob.size() - blob_offset_octets; 191 std::copy(ch.blob.begin() + blob_offset_octets + attribute_offset_octets, 192 ch.blob.begin() + blob_offset_octets + attribute_size, 219 ch.blob.resize(attribute_offset + length); 221 std::copy(value, value + length, ch.blob.begin() + attribute_offset) [all...] |
/external/google-breakpad/src/client/linux/minidump_writer/ |
minidump_writer.cc | [all...] |
/system/keymaster/ |
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...] |
soft_keymaster_context.cpp | 452 KeymasterKeyBlob* blob, 465 return SerializeIntegrityAssuredBlob(key_material, hidden, *hw_enforced, *sw_enforced, blob); 481 // 1. Software key blob. Version info, if present, is in sw_enforced. If not present, we 484 // 2. Keymaster0 hardware key blob. Version info, if present, is in sw_enforced. If not 487 // 3. Keymaster1 hardware key blob. Version info is not present and we shouldn't have been 513 static keymaster_error_t ParseOcbAuthEncryptedBlob(const KeymasterKeyBlob& blob, 520 keymaster_error_t error = DeserializeAuthEncryptedBlob(blob, &encrypted_key_material, [all...] |
asymmetric_key.cpp | 203 static keymaster_error_t get_certificate_blob(X509* certificate, keymaster_blob_t* blob) { 215 blob->data_length = len; 216 blob->data = data;
|
/external/libdrm/ |
xf86drmMode.c | 674 struct drm_mode_get_blob blob; local 677 memclear(blob); 678 blob.blob_id = blob_id; 680 if (drmIoctl(fd, DRM_IOCTL_MODE_GETPROPBLOB, &blob)) 683 if (blob.length) 684 blob.data = VOID2U64(drmMalloc(blob.length)); 686 if (drmIoctl(fd, DRM_IOCTL_MODE_GETPROPBLOB, &blob)) { 694 r->id = blob.blob_id; 695 r->length = blob.length 1166 void *blob; member in struct:_drmModePropertySetItem [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
sancov.py | 111 blob = f.read(blob_size) 113 assert(len(blob) == blob_size) 120 f2.write(blob)
|
/external/google-breakpad/src/client/linux/microdump_writer/ |
microdump_writer.cc | 377 const void* blob, 382 if (blob) { 385 context = reinterpret_cast<const ExceptionHandler::CrashContext*>(blob);
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
JpegProcessor.cpp | 369 struct camera2_jpeg_blob *blob = (struct camera2_jpeg_blob*)(header); local 370 if (blob->jpeg_blob_id == CAMERA2_JPEG_BLOB_ID) { 371 size = blob->jpeg_size;
|
/external/harfbuzz_ng/ |
Android.mk | 54 src/hb-blob.cc \
|
/external/javasqlite/src/main/java/SQLite/ |
Database.java | 722 * Open an SQLite3 blob. Only available in SQLite 3.4.0 and above. 728 * @return a Blob object 731 public Blob open_blob(String db, String table, String column, 734 Blob blob = new Blob(); local 735 _open_blob(db, table, column, row, rw, blob); 736 return blob; 776 * Internal SQLite open blob method. 782 * @param blob Blob objec [all...] |
/external/libbrillo/brillo/message_loops/ |
message_loop_unittest.cc | 345 std::vector<char> blob(1000, 'a'); 346 EXPECT_EQ(blob.size(), 347 HANDLE_EINTR(write(pipes[i].writer, blob.data(), blob.size())));
|
/external/skia/include/utils/ |
SkLuaCanvas.h | 40 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
|
SkNWayCanvas.h | 50 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
|
SkPaintFilterCanvas.h | 98 void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
|
/frameworks/base/core/jni/ |
android_os_Parcel.cpp | 215 android::Parcel::WritableBlob blob; local 216 android::status_t err2 = parcel->writeBlob(length, false, &blob); 224 memset(blob.data(), 0, length); 226 memcpy(blob.data(), ar + offset, length); 230 blob.release(); 357 android::Parcel::ReadableBlob blob; local 358 android::status_t err = parcel->readBlob(len, &blob); 368 memcpy(a2, blob.data(), len); 372 blob.release();
|
/frameworks/base/libs/hwui/ |
SkiaCanvasProxy.h | 84 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
|
/system/security/keystore/ |
Android.mk | 32 blob.cpp \
|
user_state.cpp | 31 #include "blob.h" 111 blob rawBlob; 126 ALOGW("blob not fully written %zu != %zu", outLength, length); 138 Blob masterKeyBlob(mMasterKey, sizeof(mMasterKey), mSalt, sizeof(mSalt), TYPE_MASTER_KEY); 148 // We read the raw blob to just to get the salt to generate the AES key, then we create the Blob 150 blob rawBlob; 166 Blob masterKeyBlob(rawBlob);
|
/device/asus/fugu/self-extractors/widevine/staging/ |
device-partial.mk | 15 # Widevine blob(s) necessary for Fugu hardware
|
/external/skia/src/core/ |
SkPictureRecord.h | 143 void addTextBlob(const SkTextBlob* blob); 170 void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
|
/external/wpa_supplicant_8/wpa_supplicant/ |
config.h | 126 * Alternatively, a named configuration blob can be used by setting 127 * this to blob://blob_name. 153 * Alternatively, a named configuration blob can be used by setting 154 * this to blob://blob_name. [all...] |
preauth_test.c | 163 struct wpa_config_blob *blob) 166 wpa_config_set_blob(wpa_s->conf, blob);
|
/external/skia/src/gpu/text/ |
GrAtlasTextBlob.h | 27 // With this flag enabled, the GrAtlasTextContext will, as a sanity check, regenerate every blob 34 * texture coordinates. The GrAtlasTextBlob itself has a few Blob-wide properties, and also 35 * consists of a number of runs. Runs inside a blob are flushed individually so they can be 39 * the GrAtlas will not evict anything the Blob needs. 84 static const Key& GetKey(const GrAtlasTextBlob& blob) { 85 return blob.fKey; 93 GrAtlasTextBlob* blob = reinterpret_cast<GrAtlasTextBlob*>(p); local 94 blob->fPool->release(p); 155 // Appends a glyph to the blob. If the glyph is too large, the glyph will be appended 182 const SkTextBlob* blob, [all...] |