| /system/ulib/blobfs/test/ |
| A D | blob-cache-test.cpp | 102 ASSERT_EQ(ZX_OK, cache.Add(node)); in AddLookupEvictTest() 129 ASSERT_EQ(ZX_OK, cache.Add(node)); in StopCachingTest() 149 ASSERT_EQ(ZX_OK, cache.Add(node)); in EvictNoCacheTest() 170 ASSERT_EQ(ZX_OK, cache.Add(node)); in EvictWhileCachingTest() 204 ASSERT_EQ(ZX_OK, cache.Add(node)); in CacheAfterRecycleTest() 249 ASSERT_EQ(ZX_OK, cache.Add(node)); in ResetClosedTest() 267 ASSERT_EQ(ZX_OK, cache.Add(node)); in ResetOpenTest() 313 ASSERT_EQ(ZX_OK, cache.Add(node)); in ForAllOpenNodesTest() 316 ASSERT_EQ(ZX_OK, cache.Add(node)); in ForAllOpenNodesTest() 349 ASSERT_EQ(ZX_OK, cache.Add(node)); in CachePolicyEvictImmediatelyTest() [all …]
|
| /system/utest/cobalt-client/ |
| A D | collector_test.cpp | 126 histogram.Add(1); in ConstructFromOptionsTest() 168 histogram.Add(-4, 2); in AddHistogramTest() 186 histogram.Add(-4, 2); in AddHistogramMultipleTest() 187 histogram_2.Add(-1, 3); in AddHistogramMultipleTest() 188 histogram_3.Add(1, 4); in AddHistogramMultipleTest() 211 histogram.Add(-4, 2); in FlushTest() 212 histogram_2.Add(-1, 3); in FlushTest() 255 histogram.Add(-4, 2); in FlushFailTest() 260 histogram_2.Add(-1, 3); in FlushFailTest() 321 hist->Add(value, args->amount); in ObserveFn()
|
| A D | histogram_test.cpp | 382 histogram.Add(25); in TestHistogramLazyInitialization() 384 histogram.Add(25, 4); in TestHistogramLazyInitialization() 385 histogram.Add(1500, 2); in TestHistogramLazyInitialization() 398 histogram.Add(25); in TestAdd() 400 histogram.Add(25, 4); in TestAdd() 401 histogram.Add(1500, 2); in TestAdd() 444 histogram.Add(curr.value, count); in TestAddMultiple() 470 histogram.Add(25, 4); in TestAddAfterFlush() 473 histogram.Add(25, 4); in TestAddAfterFlush() 474 histogram.Add(1500, 2); in TestAddAfterFlush() [all …]
|
| /system/utest/fs/ |
| A D | metrics_test.cpp | 59 vnodes->close.Add(kLatencyNs); in TestLogWhileEnabled() 74 vnodes->close.Add(kLatencyNs); in TestLogWhileNotEnabled() 115 hist.Add(25); in TestAddCustomMetric()
|
| /system/dev/bus/virtio/ |
| A D | console.cpp | 100 void TransferQueue::Add(TransferDescriptor* desc) { in Add() function in virtio::TransferQueue 181 port0_transmit_descriptors_.Add(desc); in Init() 230 port0_receive_descriptors_.Add(trans); in IrqRingUpdate() 252 port0_transmit_descriptors_.Add(trans); in IrqRingUpdate()
|
| A D | console.h | 49 void Add(TransferDescriptor* desc);
|
| /system/host/blobfs/ |
| A D | blobfs.h | 41 zx_status_t Add() override;
|
| A D | main.cpp | 211 if ((status = Add()) != ZX_OK) { in Mkfs() 228 zx_status_t BlobfsCreator::Add() { in Add() function in BlobfsCreator
|
| /system/host/minfs/ |
| A D | minfs.h | 32 zx_status_t Add() override;
|
| A D | main.cpp | 354 if ((status = Add()) != ZX_OK) { in Mkfs() 371 zx_status_t MinfsCreator::Add() { in Add() function in MinfsCreator
|
| /system/dev/lib/fake-bti/ |
| A D | fake-bti.cpp | 121 zx_status_t Add(fbl::RefPtr<Object> obj, zx_handle_t* out) { in Add() function in __anonebed65f90111::HandleTable 162 return gHandleTable.Add(std::move(new_bti), out); in fake_bti_create() 267 return gHandleTable.Add(std::move(new_pmt), out); in zx_bti_pin()
|
| /system/ulib/blobfs/include/blobfs/ |
| A D | blob-cache.h | 92 zx_status_t Add(const fbl::RefPtr<CacheNode>& vnode) __WARN_UNUSED_RESULT;
|
| /system/fidl/fuchsia-sysmem/ |
| A D | usages.fidl | 39 // TODO(ZX-2259): Add more specific HwDecoder flags if needed.
|
| A D | image_formats.fidl | 57 // TODO(ZX-2270): Add tiling formats.
|
| /system/ulib/fs-host/include/fs-host/ |
| A D | common.h | 112 virtual zx_status_t Add() { return ZX_ERR_NOT_SUPPORTED; } in Add() function
|
| /system/fidl/fuchsia-net-stack/ |
| A D | stack.fidl | 137 /// Add an Ethernet interface to the network stack. On success, returns the identifier assigned 156 … /// Add an address to the interface. If the interface already has an address of a given type that 167 … /// Add a new entry to the forwarding table. If the table already contains an entry with the same
|
| /system/ulib/cobalt-client/include/cobalt-client/cpp/ |
| A D | histogram.h | 79 void Add(ValueType value, Count times = 1) {
|
| /system/banjo/ddk-protocol-usb-request/ |
| A D | usb-request.banjo | 45 /// Add offset to get actual data.
|
| /system/ulib/cobalt-client/ |
| A D | README.md | 120 years_per_travel.Add(years_traveled); 122 years_per_travel.Add(years_traveled, nums_of_travels);
|
| /system/ulib/blobfs/ |
| A D | blob-cache.cpp | 154 zx_status_t BlobCache::Add(const fbl::RefPtr<CacheNode>& vnode) { in Add() function in blobfs::BlobCache
|
| A D | vnode.cpp | 58 histogram_->Add(latency.get()); in ~LatencyEvent() 955 if ((status = Cache().Add(vn)) != ZX_OK) { in Create()
|
| A D | blobfs.cpp | 649 zx_status_t status = Cache().Add(vnode); in InitializeVnodes()
|
| /system/utest/fbl/ |
| A D | function_tests.cpp | 685 void Add(int value) { in Add() function in fbl::tests::__anon9924038f0111::example::Accumulator 700 CountToTen(fbl::BindMember(&accum, &Accumulator::Add)); in SumToTen()
|
| /system/ulib/fs-host/ |
| A D | common.cpp | 448 return Add(); in RunCommand()
|
| /system/fidl/fuchsia-device-manager/ |
| A D | coordinator.fidl | 128 /// Add metadata blob associated with this device and the given key.
|