/system/bt/test/ |
D | run_unit_tests.sh | 25 binary="$(basename "$0")" 26 echo "Usage: ${binary} --help" 27 …echo " ${binary} [-i <iterations>] [-s <specific device>] [--all] [<test name>[.<filter>] ..… 105 binary="/data/nativetest/${name}/${name}" 107 push_command=( "${adb[@]}" push {"${ANDROID_PRODUCT_OUT}",}"${binary}" ) 108 test_command=( "${adb[@]}" shell "${binary}" )
|
/system/extras/simpleperf/scripts/ |
D | binary_cache_builder.py | 104 for binary in self.binaries: 105 index = binary.rfind('/') 106 filename = binary[index+1:] 110 paths.append(binary) 121 for binary in paths: 122 expected_build_id = self.binaries.get(binary) 125 expected_build_id, binary) 147 for binary in self.binaries: 148 build_id = self.binaries[binary] 149 if binary[0] != '/' or binary == "//anon": [all …]
|
D | binary_cache_builder.config | 12 # as the one recorded in perf.data, then we copy the binary in the directory 13 # instead of pulling the binary from device. 18 # to host. However, We don't need to pull a binary if there is already a binary
|
D | app_profiler.config | 64 # The path of readelf, used to read build id of files in binary cache. 70 # binary hit by perf.data on host.
|
/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); }
|
D | Expression.h | 72 static Expression *binary(Expression *lhs, std::string op, Expression *rhs);
|
/system/core/toolbox/ |
D | NOTICE | 20 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/public/ |
D | incident.te | 2 # take an incident report (binary, shared bugreport), download incident
|
D | vendor_toolbox.te | 2 # Non-vendor processes are not allowed to execute the binary
|
D | toolbox.te | 21 # Only allow entry from init via the toolbox binary.
|
/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()
|
/system/extras/perfprofd/quipper/ |
D | perf_utils.cc | 158 std::ifstream in(filename.c_str(), std::ios::binary); in ReadFileToData() 178 std::ofstream out(filename.c_str(), std::ios::binary); in WriteDataToFile()
|
/system/netd/tests/ |
D | binder_test.cpp | 147 static std::vector<std::string> listIptablesRule(const char *binary, const char *chainName) { in listIptablesRule() argument 148 std::string command = StringPrintf("%s -w -n -L %s", binary, chainName); in listIptablesRule() 152 static int iptablesRuleLineLength(const char *binary, const char *chainName) { in iptablesRuleLineLength() argument 153 return listIptablesRule(binary, chainName).size(); in iptablesRuleLineLength() 203 static int bandwidthDataSaverEnabled(const char *binary) { in bandwidthDataSaverEnabled() argument 204 std::vector<std::string> lines = listIptablesRule(binary, "bw_data_saver"); in bandwidthDataSaverEnabled()
|
/system/tools/aidl/tests/java_app/ |
D | README | 6 3) Push over hellod binary:
|
/system/tools/aidl/ |
D | line_reader.cpp | 38 input_stream_.open(file_path, ifstream::in | ifstream::binary); in Init()
|
/system/core/libsync/ |
D | Android.bp | 29 // libsync_recovery is only intended for the recovery binary.
|
/system/extras/simpleperf/ |
D | read_elf.cpp | 170 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()
|
D | record_file_reader.cpp | 363 char* binary = new char[header->size]; in ReadBuildIdFeature() local 364 memcpy(binary, p, header->size); in ReadBuildIdFeature() 366 BuildIdRecord record(binary); in ReadBuildIdFeature()
|
/system/core/rootdir/ |
D | Android.mk | 101 …$(foreach binary, $(SANITIZE_ASAN_OPTIONS_FOR), $(eval $(call create-asan-options-module,$(binary)…
|
/system/sepolicy/private/ |
D | blkid_untrusted.te | 34 # Only allow entry from vold via blkid binary
|
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
D | util.c | 238 if (f->binary && binbehave == BINFILE_SKIP) { in procfile() 245 t = procline(&ln, f->binary); in procfile() 269 binbehave == BINFILE_BIN && f->binary && !qflag) in procfile()
|
D | grep.h | 86 bool binary; member
|
/system/core/bootstat/ |
D | Android.bp | 64 // bootstat binary
|
/system/keymaster/ |
D | attestation_record_test.cpp | 117 std::ofstream::out | std::ofstream::binary | std::ofstream::trunc); in TEST()
|