/system/bt/test/ |
D | run_benchmarks.sh | 16 binary="$(basename "$0")" 17 echo "Usage: ${binary} --help" 18 …echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<benchmark name>[.<filter… 93 binary="/data/benchmarktest64/${name}/${name}" 95 binary="/data/benchmarktest/${name}/${name}" 98 push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" ) 99 benchmark_command=( "${adb[@]}" shell "${binary}" )
|
D | run_unit_tests.sh | 36 binary="$(basename "$0")" 37 echo "Usage: ${binary} --help" 38 …echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<test name>[.<filter>] ..… 120 binary="/data/nativetest64/${name}/${name}" 122 binary="/data/nativetest/${name}/${name}" 125 push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" ) 126 test_command=( "${adb[@]}" shell "${binary}" )
|
/system/nfc/ |
D | run_unit_tests.sh | 12 binary="$(basename "$0")" 13 echo "Usage: ${binary} --help" 14 …echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<test name>[.<filter>] ..… 92 binary="/data/nativetest/${name}/${name}" 94 push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" ) 95 test_command=( "${adb[@]}" shell "${binary}" )
|
/system/extras/simpleperf/scripts/ |
D | binary_cache_builder.py | 93 for binary in self.binaries: 94 index = binary.rfind('/') 95 filename = binary[index+1:] 99 paths.append(binary) 109 for binary in paths: 110 expected_build_id = self.binaries.get(binary) 113 expected_build_id, binary) 153 for binary in self.binaries: 154 build_id = self.binaries[binary] 155 if not binary.startswith('/') or binary == "//anon" or binary.startswith("/dev/"): [all …]
|
/system/chre/host/common/include/chre_host/ |
D | fragmented_load_transaction.h | 39 std::vector<uint8_t> binary; member 42 const std::vector<uint8_t> &binary) in FragmentedLoadRequest() 43 : FragmentedLoadRequest(fragmentId, transactionId, 0, 0, 0, 0, binary) {} in FragmentedLoadRequest() 48 const std::vector<uint8_t> &binary) in FragmentedLoadRequest() 55 binary(binary) {} in FragmentedLoadRequest()
|
/system/netd/tests/ |
D | test_utils.cpp | 66 std::vector<std::string> listIptablesRule(const char* binary, const char* chainName) { in listIptablesRule() argument 67 std::string command = StringPrintf("%s -w -n -L %s", binary, chainName); in listIptablesRule() 71 int iptablesRuleLineLength(const char* binary, const char* chainName) { in iptablesRuleLineLength() argument 72 return listIptablesRule(binary, chainName).size(); in iptablesRuleLineLength() 75 bool iptablesRuleExists(const char* binary, const char* chainName, in iptablesRuleExists() argument 77 std::vector<std::string> rules = listIptablesRule(binary, chainName); in iptablesRuleExists()
|
D | test_utils.h | 30 std::vector<std::string> listIptablesRule(const char* binary, const char* chainName); 32 int iptablesRuleLineLength(const char* binary, const char* chainName); 34 bool iptablesRuleExists(const char* binary, const char* chainName, const std::string& expectedRule);
|
D | binder_test.cpp | 433 static int bandwidthDataSaverEnabled(const char *binary) { in bandwidthDataSaverEnabled() argument 434 std::vector<std::string> lines = listIptablesRule(binary, "bw_data_saver"); in bandwidthDataSaverEnabled() 456 size_t minSize = (std::string(binary) == IPTABLES_PATH) ? 3 : 9; in bandwidthDataSaverEnabled() 977 for (const auto& binary : { IPTABLES_PATH, IP6TABLES_PATH }) { in expectNoTestCounterRules() 978 std::string command = StringPrintf("%s -w -nvL tetherctrl_counters", binary); in expectNoTestCounterRules() 1069 static std::vector<std::string> listIptablesRuleByTable(const char* binary, const char* table, in listIptablesRuleByTable() argument 1071 std::string command = StringPrintf("%s -t %s -w -n -v -L %s", binary, table, chainName); in listIptablesRuleByTable() 1076 bool iptablesIdleTimerInterfaceRuleExists(const char* binary, const char* chainName, in iptablesIdleTimerInterfaceRuleExists() argument 1079 std::vector<std::string> rules = listIptablesRuleByTable(binary, table, chainName); in iptablesIdleTimerInterfaceRuleExists() 1094 for (const auto& binary : {IPTABLES_PATH, IP6TABLES_PATH}) { in expectIdletimerInterfaceRuleExists() [all …]
|
/system/extras/simpleperf/ |
D | cmd_inject.cpp | 170 auto& binary = binary_map_[instr_range.dso]; in ProcessInstrRange() local 171 binary.range_count_map[AddrPair(instr_range.start_addr, instr_range.end_addr)] += in ProcessInstrRange() 174 binary.branch_count_map[AddrPair(instr_range.end_addr, instr_range.branch_to_addr)] += in ProcessInstrRange() 190 const BinaryInfo& binary = binary_map_[dso]; in PostProcess() local 193 std::map<AddrPair, uint64_t> range_count_map(binary.range_count_map.begin(), in PostProcess() 194 binary.range_count_map.end()); in PostProcess() 208 std::map<AddrPair, uint64_t> branch_count_map(binary.branch_count_map.begin(), in PostProcess() 209 binary.branch_count_map.end()); in PostProcess()
|
/system/extras/libjsonpb/parse/ |
D | jsonpb.cpp | 61 std::string binary; in JsonStringToMessage() local 62 auto status = JsonToBinaryString(resolver.get(), GetTypeUrl(*message), content, &binary); in JsonStringToMessage() 66 if (!message->ParseFromString(binary)) { in JsonStringToMessage()
|
/system/core/liblog/ |
D | README.protocol.md | 16 } binary; 34 ## `binary` payload 36 The `binary` part of the union is for binary buffers (events, security, etc) and consists of an
|
/system/tools/hidl/c2hal/ |
D | c2hal_y.yy | 482 | expr '+' expr { $$ = Expression::binary($1, "+", $3); } 483 | expr '-' expr { $$ = Expression::binary($1, "-", $3); } 484 | expr '/' expr { $$ = Expression::binary($1, "/", $3); } 485 | expr '*' expr { $$ = Expression::binary($1, "*", $3); } 486 | expr '%' expr { $$ = Expression::binary($1, "%%", $3); } 487 | expr '&' expr { $$ = Expression::binary($1, "&", $3); } 488 | expr '|' expr { $$ = Expression::binary($1, "|", $3); } 489 | expr '^' expr { $$ = Expression::binary($1, "^", $3); } 490 | expr LSHIFT expr { $$ = Expression::binary($1, "<<", $3); } 491 | expr RSHIFT expr { $$ = Expression::binary($1, ">>", $3); }
|
/system/chre/java/test/settings/src/com/google/android/chre/test/setting/ |
D | ContextHubGnssSettingsTestExecutor.java | 39 public ContextHubGnssSettingsTestExecutor(NanoAppBinary binary) { in ContextHubGnssSettingsTestExecutor() argument 40 mExecutor = new ContextHubSettingsTestExecutor(binary); in ContextHubGnssSettingsTestExecutor()
|
D | ContextHubWwanSettingsTestExecutor.java | 38 public ContextHubWwanSettingsTestExecutor(NanoAppBinary binary) { in ContextHubWwanSettingsTestExecutor() argument 39 mExecutor = new ContextHubSettingsTestExecutor(binary); in ContextHubWwanSettingsTestExecutor()
|
/system/chre/java/test/utils/src/com/google/android/utils/chre/ |
D | ChreTestUtil.java | 78 byte[] binary = null; in createNanoAppBinary() 80 binary = new byte[stream.available()]; in createNanoAppBinary() 81 stream.read(binary); in createNanoAppBinary() 86 return new NanoAppBinary(binary); in createNanoAppBinary()
|
/system/bt/build/ |
D | Android.bp | 108 // Enabled code coverage on a binary. These flags allow libraries that were 110 // order to create a binary that will create a profraw file when ran. Note 112 // compiled in the binary. See //test/gen_coverage.py for more information
|
/system/sepolicy/prebuilts/api/29.0/public/ |
D | incident.te | 2 # take an incident report (binary, shared bugreport), download incident
|
/system/sepolicy/prebuilts/api/26.0/public/ |
D | incident.te | 2 # take an incident report (binary, shared bugreport), download incident
|
/system/sepolicy/prebuilts/api/27.0/public/ |
D | incident.te | 2 # take an incident report (binary, shared bugreport), download incident
|
/system/sepolicy/prebuilts/api/28.0/public/ |
D | incident.te | 2 # take an incident report (binary, shared bugreport), download incident
|
/system/sepolicy/public/ |
D | incident.te | 2 # take an incident report (binary, shared bugreport), download incident
|
/system/sepolicy/prebuilts/api/30.0/public/ |
D | incident.te | 2 # take an incident report (binary, shared bugreport), download incident
|
/system/chre/external/kiss_fft/ |
D | LICENSE | 5 Redistribution and use in source and binary forms, with or without modification, are permitted prov… 8 …* Redistributions in binary form must reproduce the above copyright notice, this list of condition…
|
/system/media/audio_route/ |
D | NOTICE | 3 Redistribution and use in source and binary forms, with or without 7 * Redistributions in binary form must reproduce the above copyright
|
/system/extras/libfec/test/ |
D | test_read.cpp | 46 ofstream output(argv[2], ios::binary | ios::trunc); in main()
|