| /system/utest/trace/ |
| A D | record_tests.cpp | 22 const char blob[] = "abc"; in blob_test() local 30 blob, sizeof(blob)); in blob_test() 34 name, sizeof(blob)); in blob_test() 46 char blob[256]; in blob_macro_test() local 47 for (unsigned i = 0; i < sizeof(blob); ++i) { in blob_macro_test() 48 blob[i] = static_cast<char>(i); in blob_macro_test() 51 TRACE_BLOB(TRACE_BLOB_TYPE_DATA, name, blob, sizeof(blob)); in blob_macro_test() 54 name, name, sizeof(blob)); in blob_macro_test()
|
| /system/ulib/blobfs/ |
| A D | fsck.cpp | 114 void BlobfsChecker::Init(fbl::unique_ptr<Blobfs> blob) { in Init() argument 115 blobfs_ = std::move(blob); in Init() 118 zx_status_t Fsck(fbl::unique_ptr<Blobfs> blob) { in Fsck() argument 120 chk.Init(std::move(blob)); in Fsck()
|
| A D | rules.mk | 32 $(LOCAL_DIR)/blob-cache.cpp \ 100 $(TEST_DIR)/blob-cache-test.cpp \
|
| A D | host.cpp | 320 fbl::unique_ptr<Blobfs> blob; in blobfs_fsck() local 322 … if ((status = blobfs_create_sparse(&blob, std::move(fd), start, end, extent_lengths)) != ZX_OK) { in blobfs_fsck() 324 } else if ((status = Fsck(std::move(blob))) != ZX_OK) { in blobfs_fsck()
|
| /system/ulib/trace/include/trace/internal/ |
| A D | event_common.h | 366 #define TRACE_BLOB(type, name, blob, blob_size) \ argument 367 TRACE_INTERNAL_BLOB((type), (name), (blob), (blob_size))
|
| A D | event_internal.h | 269 #define TRACE_INTERNAL_BLOB(type, name, blob, blob_size) \ argument 276 (type), (name), (blob), (blob_size)); \ 359 const void* blob, size_t blob_size);
|
| /system/utest/trace-reader/ |
| A D | records_tests.cpp | 702 const char blob[] = "abc"; in record_test() local 704 TRACE_BLOB_TYPE_DATA, "name", blob, sizeof(blob)}); in record_test() 707 EXPECT_EQ(sizeof(blob), r.GetBlob().blob_size); in record_test() 708 EXPECT_STR_EQ(blob, reinterpret_cast<const char*>(r.GetBlob().blob)); in record_test() 713 EXPECT_EQ(sizeof(blob), m.GetBlob().blob_size); in record_test() 714 EXPECT_STR_EQ(blob, reinterpret_cast<const char*>(m.GetBlob().blob)); in record_test() 719 EXPECT_EQ(sizeof(blob), r.GetBlob().blob_size); in record_test() 720 EXPECT_STR_EQ(blob, reinterpret_cast<const char*>(r.GetBlob().blob)); in record_test() 723 name, sizeof(blob)); in record_test()
|
| /system/ulib/trace/ |
| A D | event.cpp | 187 const void* blob, size_t blob_size) { in trace_internal_write_blob_record_and_release_context() argument 191 context, type, &name_ref, blob, blob_size); in trace_internal_write_blob_record_and_release_context()
|
| /system/dev/audio/intel-hda/dsp/ |
| A D | intel-dsp-topology.cpp | 330 const void* blob; in CreateI2SModule() local 335 &blob, &blob_size); in CreateI2SModule() 352 memcpy(cfg_buf.get() + sizeof(cfg), blob, blob_size); in CreateI2SModule()
|
| /system/core/devmgr/fshost/ |
| A D | block-watcher.cpp | 202 const char *blob = getenv(key); in pkgfs_ldsvc_load_blob() local 203 if (blob == nullptr) { in pkgfs_ldsvc_load_blob() 206 int fd = openat(fs_blob_fd, blob, O_RDONLY); in pkgfs_ldsvc_load_blob()
|
| /system/ulib/trace-reader/ |
| A D | reader.cpp | 348 const void* blob; in ReadBlobRecord() local 350 if (!record.ReadInPlace(blob_words, &blob)) in ReadBlobRecord() 354 Record(Record::Blob{blob_type, name, blob, blob_size})); in ReadBlobRecord()
|
| /system/ulib/trace-engine/include/trace-engine/ |
| A D | context.h | 236 const void* blob, size_t blob_size);
|
| /system/fidl/fuchsia-device-manager/ |
| A D | coordinator.fidl | 124 /// Retrieve the metadata blob associated with this device and the given key. 128 /// Add metadata blob associated with this device and the given key.
|
| /system/ulib/trace-engine/ |
| A D | context_api.cpp | 736 auto blob = in trace_context_begin_write_blob_record() local 746 return blob; in trace_context_begin_write_blob_record() 756 const void* blob, size_t blob_size) { in trace_context_write_blob_record() argument 759 memcpy(buf, blob, blob_size); in trace_context_write_blob_record()
|
| /system/ulib/trace-reader/include/trace-reader/ |
| A D | records.h | 530 const void* blob; member
|