Home
last modified time | relevance | path

Searched refs:binary (Results 1 – 25 of 95) sorted by relevance

1234

/system/bt/test/
Drun_unit_tests.sh32 binary="$(basename "$0")"
33 echo "Usage: ${binary} --help"
34 …echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<test name>[.<filter>] ..…
116 binary="/data/nativetest64/${name}/${name}"
118 binary="/data/nativetest/${name}/${name}"
121 push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" )
122 test_command=( "${adb[@]}" shell "${binary}" )
/system/nfc/
Drun_unit_tests.sh12 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/
Dbinary_cache_builder.py105 for binary in self.binaries:
106 index = binary.rfind('/')
107 filename = binary[index+1:]
111 paths.append(binary)
122 for binary in paths:
123 expected_build_id = self.binaries.get(binary)
126 expected_build_id, binary)
148 for binary in self.binaries:
149 build_id = self.binaries[binary]
150 if binary[0] != '/' or binary == "//anon" or binary.startswith("/dev/"):
[all …]
/system/chre/host/common/include/chre_host/
Dfragmented_load_transaction.h39 std::vector<uint8_t> binary; member
43 const std::vector<uint8_t>& binary) : in FragmentedLoadRequest()
44 FragmentedLoadRequest(fragmentId, transactionId, 0, 0, 0, 0, binary) {} in FragmentedLoadRequest()
49 size_t appTotalSizeBytes, const std::vector<uint8_t>& binary) in FragmentedLoadRequest()
56 binary(binary) {} in FragmentedLoadRequest()
/system/tools/hidl/c2hal/
Dc2hal_y.yy482 | 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); }
DExpression.h72 static Expression *binary(Expression *lhs, std::string op, Expression *rhs);
/system/core/toolbox/
DNOTICE20 Redistribution and use in source and binary forms, with or without
25 * Redistributions in binary form must reproduce the above copyright
48 Redistribution and use in source and binary forms, with or without
53 2. Redistributions in binary form must reproduce the above copyright
77 Redistribution and use in source and binary forms, with or without
82 2. Redistributions in binary form must reproduce the above copyright
109 Redistribution and use in source and binary forms, with or without
114 2. Redistributions in binary form must reproduce the above copyright
138 Redistribution and use in source and binary forms, with or without
143 2. Redistributions in binary form must reproduce the above copyright
[all …]
/system/sepolicy/prebuilts/api/26.0/public/
Dincident.te2 # take an incident report (binary, shared bugreport), download incident
Dvendor_toolbox.te2 # Non-vendor processes are not allowed to execute the binary
/system/sepolicy/prebuilts/api/28.0/public/
Dincident.te2 # take an incident report (binary, shared bugreport), download incident
Dvendor_toolbox.te2 # Non-vendor processes are not allowed to execute the binary
/system/sepolicy/prebuilts/api/27.0/public/
Dincident.te2 # take an incident report (binary, shared bugreport), download incident
Dvendor_toolbox.te2 # Non-vendor processes are not allowed to execute the binary
/system/sepolicy/public/
Dincident.te2 # take an incident report (binary, shared bugreport), download incident
Dvendor_toolbox.te2 # Non-vendor processes are not allowed to execute the binary
/system/chre/external/kiss_fft/
DLICENSE5 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/
DNOTICE3 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/
Dtest_read.cpp46 ofstream output(argv[2], ios::binary | ios::trunc); in main()
/system/netd/tests/
Dbinder_test.cpp178 static std::vector<std::string> listIptablesRule(const char *binary, const char *chainName) { in listIptablesRule() argument
179 std::string command = StringPrintf("%s -w -n -L %s", binary, chainName); in listIptablesRule()
183 static int iptablesRuleLineLength(const char *binary, const char *chainName) { in iptablesRuleLineLength() argument
184 return listIptablesRule(binary, chainName).size(); in iptablesRuleLineLength()
187 static bool iptablesRuleExists(const char *binary, in iptablesRuleExists() argument
190 std::vector<std::string> rules = listIptablesRule(binary, chainName); in iptablesRuleExists()
357 static int bandwidthDataSaverEnabled(const char *binary) { in bandwidthDataSaverEnabled() argument
358 std::vector<std::string> lines = listIptablesRule(binary, "bw_data_saver"); in bandwidthDataSaverEnabled()
380 size_t minSize = (std::string(binary) == IPTABLES_PATH) ? 3 : 9; in bandwidthDataSaverEnabled()
886 for (const auto& binary : { IPTABLES_PATH, IP6TABLES_PATH }) { in expectNoTestCounterRules()
[all …]
/system/tools/aidl/tests/java_app/
DREADME6 3) Push over hellod binary:
/system/tools/aidl/
Dline_reader.cpp38 input_stream_.open(file_path, ifstream::in | ifstream::binary); in Init()
/system/extras/simpleperf/
Dread_elf.cpp170 llvm::object::OwningBinary<llvm::object::Binary> binary; member
197 wrapper->binary = llvm::object::OwningBinary<llvm::object::Binary>(std::move(binary_or_err.get()), in OpenObjectFile()
199 wrapper->obj = llvm::dyn_cast<llvm::object::ObjectFile>(wrapper->binary.getBinary()); in OpenObjectFile()
212 wrapper->binary = llvm::object::OwningBinary<llvm::object::Binary>(std::move(binary_or_err.get()), in OpenObjectFileFromString()
214 wrapper->obj = llvm::dyn_cast<llvm::object::ObjectFile>(wrapper->binary.getBinary()); in OpenObjectFileFromString()
/system/core/libsync/
DAndroid.bp34 // libsync_recovery is only intended for the recovery binary.
/system/sepolicy/prebuilts/api/28.0/private/
Dblkid_untrusted.te34 # Only allow entry from vold via blkid binary
/system/sepolicy/private/
Dblkid_untrusted.te34 # Only allow entry from vold via blkid binary

1234