Home
last modified time | relevance | path

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

123

/system/bt/test/
Drun_unit_tests.sh25 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/
Dbinary_cache_builder.py104 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 …]
Dbinary_cache_builder.config12 # 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
Dapp_profiler.config64 # 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/
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/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
Dtoolbox.te21 # Only allow entry from init via the toolbox binary.
/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/extras/perfprofd/quipper/
Dperf_utils.cc158 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/
Dbinder_test.cpp147 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/
DREADME6 3) Push over hellod binary:
/system/tools/aidl/
Dline_reader.cpp38 input_stream_.open(file_path, ifstream::in | ifstream::binary); in Init()
/system/core/libsync/
DAndroid.bp29 // libsync_recovery is only intended for the recovery binary.
/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()
Drecord_file_reader.cpp363 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/
DAndroid.mk101 …$(foreach binary, $(SANITIZE_ASAN_OPTIONS_FOR), $(eval $(call create-asan-options-module,$(binary)…
/system/sepolicy/private/
Dblkid_untrusted.te34 # Only allow entry from vold via blkid binary
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
Dutil.c238 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()
Dgrep.h86 bool binary; member
/system/core/bootstat/
DAndroid.bp64 // bootstat binary
/system/keymaster/
Dattestation_record_test.cpp117 std::ofstream::out | std::ofstream::binary | std::ofstream::trunc); in TEST()

123