Home
last modified time | relevance | path

Searched refs:Arg (Results 1 – 10 of 10) sorted by relevance

/system/libziparchive/incfs_support/include/incfs_support/
Daccess.h27 template <class Arg, class Func>
29 std::remove_cvref_t<decltype(std::declval<Func>()(std::declval<Arg>()))>;
31 template <class Arg, class Func>
32 constexpr auto is_void_func = std::is_same_v<func_result<Arg, Func>, void>;
34 template <class Arg, class Func>
36 std::conditional_t<is_void_func<Arg, Func>, bool,
37 std::optional<func_result<Arg, Func>>>;
/system/libbase/include/android-base/
Dcollections.h48 template <typename T, typename Arg, typename... Args>
49 void AssertType(Arg&&) { in AssertType() argument
50 static_assert(std::is_same<T, typename std::decay<Arg>::type>::value); in AssertType()
53 template <typename T, typename Arg, typename... Args>
54 void AssertType(Arg&&, Args&&... args) { in AssertType() argument
55 static_assert(std::is_same<T, typename std::decay<Arg>::type>::value); in AssertType()
/system/bt/gd/os/
Dthread_benchmark.cc91 ->Arg(10)
92 ->Arg(1000)
93 ->Arg(10000)
94 ->Arg(100000)
112 ->Arg(10)
113 ->Arg(1000)
114 ->Arg(10000)
115 ->Arg(100000)
Dalarm_benchmark.cc103 ->Arg(1)
104 ->Arg(5)
105 ->Arg(10)
106 ->Arg(20)
107 ->Arg(100)
108 ->Arg(1000)
109 ->Arg(2000)
Dqueue_benchmark.cc165 ->Arg(10)
166 ->Arg(100)
167 ->Arg(1000)
168 ->Arg(10000)
169 ->Arg(100000)
199 ->Arg(10)
200 ->Arg(100)
201 ->Arg(1000)
/system/bt/common/benchmark/
Dtimer_performance_benchmark.cc91 ->Arg(1)
92 ->Arg(5)
93 ->Arg(10)
94 ->Arg(20)
95 ->Arg(100)
96 ->Arg(1000)
97 ->Arg(2000)
146 ->Arg(1)
147 ->Arg(5)
148 ->Arg(10)
[all …]
/system/bt/gd/rust/facade/src/
Dmain.rs5 use clap::{App, Arg};
34 Arg::with_name("root-server-port") in async_main()
39 .arg(Arg::with_name("grpc-port").long("grpc-port").default_value("8899").takes_value(true)) in async_main()
41 Arg::with_name("signal-port") in async_main()
46 .arg(Arg::with_name("rootcanal-port").long("rootcanal-port").takes_value(true)) in async_main()
47 .arg(Arg::with_name("btsnoop").long("btsnoop").takes_value(true)) in async_main()
48 .arg(Arg::with_name("btsnooz").long("btsnooz").takes_value(true)) in async_main()
49 .arg(Arg::with_name("btconfig").long("btconfig").takes_value(true)) in async_main()
/system/libziparchive/
Dzip_archive_benchmark.cpp109 BENCHMARK(StartAlignedEntry)->Arg(2)->Arg(16)->Arg(1024)->Arg(4096);
133 BENCHMARK(ExtractEntry)->Arg(2)->Arg(16)->Arg(1024);
/system/unwinding/libbacktrace/
Dbacktrace_read_benchmarks.cpp37 #define AT_COMMON_SIZES Arg(1)->Arg(4)->Arg(8)->Arg(16)->Arg(100)->Arg(200)->Arg(500)->Arg(1024)
/system/netd/tests/benchmarks/
Dbpf_benchmark.cpp77 BENCHMARK_REGISTER_F(BpfBenchMark, MapUpdateEntry)->Arg(1);
78 BENCHMARK_REGISTER_F(BpfBenchMark, MapWriteNewEntry)->Arg(1);
79 BENCHMARK_REGISTER_F(BpfBenchMark, MapDeleteAddEntry)->Arg(1);
80 BENCHMARK_REGISTER_F(BpfBenchMark, WaitForRcu)->Arg(1);