Home
last modified time | relevance | path

Searched refs:sh (Results 1 – 25 of 112) sorted by relevance

12345

/system/tools/hidl/
Dupdate-all-google-makefiles.sh5 $ANDROID_BUILD_TOP/system/libhidl/update-makefiles.sh
6 $ANDROID_BUILD_TOP/hardware/interfaces/update-makefiles.sh
7 $ANDROID_BUILD_TOP/frameworks/hardware/interfaces/update-makefiles.sh
8 $ANDROID_BUILD_TOP/system/hardware/interfaces/update-makefiles.sh
10 $ANDROID_BUILD_TOP/system/tools/hidl/test/vendor/update-makefile.sh
/system/bt/test/
DREADME.md8 ```sh
13 ```sh
20 ```sh
21 ./run_unit_tests.sh --help
26 ```sh
27 ./run_unit_tests.sh net_test_bluetooth
32 ```sh
33 ./run_unit_tests.sh net_test_bluetooth.BluetoothTest.AdapterRepeatedEnableDisable
38 system/bt/test$ ./run_unit_tests.sh net_test_bluetooth
/system/sepolicy/
DPREUPLOAD.cfg2 whitespace = tools/whitespace.sh ${PREUPLOAD_FILES}
3 aosp_hook = ${REPO_ROOT}/frameworks/base/tools/aosp/aosp_sha.sh ${PREUPLOAD_COMMIT} "."
4 policy_version_check = tools/policy_version_check.sh
/system/extras/cppreopts/
DAndroid.bp18 name: "preloads_copy.sh",
20 src: "preloads_copy.sh",
24 name: "cppreopts.sh",
27 src: "cppreopts.sh",
30 "preloads_copy.sh",
/system/libufdt/tests/
DREADME5 * run_tests.sh: The main entry to run test cases. Using different
7 * gen_test.sh: The script to run a single test case.
8 * common.sh: A common lib containing several useful functions.
48 1. `source build/envsetup.sh`
51 4. `system/libufdt/tests/run_tests.sh`
Dgen_test.sh29 source ${SCRIPT_DIR}/common.sh
53 $SCRIPT_DIR/apply_overlay.sh --fdt "$BASE_DTS" "$OVERLAY_DTS" "$REF_MERGED_DTS"
54 $SCRIPT_DIR/apply_overlay.sh --ufdt "$BASE_DTS" "$OVERLAY_DTS" "$OVL_MERGED_DTS"
Drun_tests.sh18 source ${SCRIPT_DIR}/common.sh
34 ./gen_test.sh "${filename}" >&2 ||
Drun_stress_test.sh18 source ${SCRIPT_DIR}/common.sh
31 ./apply_overlay.sh "--$overaly" "$base_dts" "$overlay_dts" "$merged_dts"
/system/core/fs_mgr/tests/
DAndroid.bp39 name: "adb-remount-test.sh",
40 srcs: ["adb-remount-test.sh"],
56 name: "adb-remount-sh",
57 src: "adb-remount-test.sh",
58 filename: "adb-remount-test.sh",
60 test_config: "adb-remount-sh.xml",
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/app/
Dprofiling.gradle17 // Exclude wrap.sh for architectures not built.
22 .collect{ "**/" + it + "/wrap.sh" }
27 // Add lib/xxx/wrap.sh in the apk. This is to enable java profiling on Android O
44 writer.write('#!/system/bin/sh\n')
53 def wrapFile = new File(dir, "wrap.sh")
/system/extras/simpleperf/demo/SimpleperfExampleOfKotlin/app/
Dprofiling.gradle17 // Exclude wrap.sh for architectures not built.
22 .collect{ "**/" + it + "/wrap.sh" }
27 // Add lib/xxx/wrap.sh in the apk. This is to enable java profiling on Android O
44 writer.write('#!/system/bin/sh\n')
53 def wrapFile = new File(dir, "wrap.sh")
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/app/
Dprofiling.gradle16 // Exclude wrap.sh for architectures not built.
21 .collect{ "**/" + it + "/wrap.sh" }
26 // Add lib/xxx/wrap.sh in the apk. This is to enable java profiling on Android O
43 writer.write('#!/system/bin/sh\n')
52 def wrapFile = new File(dir, "wrap.sh")
/system/bt/
DREADME.md13 ```sh
21 ```sh
23 build/install_deps.sh
28 ```sh
42 ```sh
67 ```sh
74 ```sh
85 ```sh
99 ```sh
/system/extras/simpleperf/demo/
DREADME.md25 ```sh
46 ```sh
58 ```sh
66 ```sh
78 ```sh
90 ```sh
98 ```sh
110 ```sh
122 ```sh
130 ```sh
/system/libufdt/utils/
DREADME.md55 1. `source build/envsetup.sh`
68 ```sh
79 ```sh
125 ```sh
143 ```sh
163 ```sh
179 ```sh
188 ```sh
218 ```sh
/system/tools/hidl/test/error_test/
DAndroid.bp4 tool_files: ["hidl_error_test.sh"],
5 cmd: "$(location hidl_error_test.sh) $(location hidl-gen) &&" +
/system/extras/squashfs_utils/
DAndroid.bp31 name: "mksquashfsimage.sh",
32 src: "mksquashfsimage.sh",
/system/core/shell_and_utilities/
DAndroid.bp22 "sh",
36 "sh.recovery",
/system/extras/f2fs_utils/
DAndroid.bp40 name: "mkf2fsuserimg.sh",
42 src: "mkf2fsuserimg.sh",
/system/core/libpixelflinger/codeflinger/
Dload_store.cpp237 int sh = s.h; in downshift() local
239 int maskHiBits = (sh!=32) ? ((s.flags & CLEAR_HI)?1:0) : 0; in downshift()
241 int sbits = sh - sl; in downshift()
271 const int offset = sh - dbits; in downshift()
299 MOV(AL, 0, ireg, reg_imm(s.reg, LSL, 32-sh)); in downshift()
300 sl += 32-sh; in downshift()
301 sh = 32; in downshift()
329 sh -= sl; in downshift()
342 if ((maskLoBits|dithering) && (sh > dbits)) { in downshift()
343 int shift = sh-dbits; in downshift()
[all …]
/system/core/libpixelflinger/
Dbuffer.cpp41 int sh, int sl, int dh, int dl, int ch, int cl, int dither);
329 int sh, int sl, // src in downshift_component() argument
334 const int sbits = sh-sl; in downshift_component()
360 v <<= 32-sh; in downshift_component()
361 sl += 32-sh; in downshift_component()
362 sh = 32; in downshift_component()
367 v >>= sh-dbits; in downshift_component()
369 sh = dbits; in downshift_component()
374 int shift = dh-sh; in downshift_component()
380 int shift = sh-dh; in downshift_component()
/system/extras/simpleperf/doc/
DREADME.md137 [inferno.sh](#inferno) (or inferno.bat on Windows): generating flamegraph in html interface.
139 inferno/: implementation of inferno. Used by inferno.sh.
178 If you are on Android >= O, we can use [wrap.sh](#https://developer.android.com/ndk/guides/wrap-scr…
186 Step 2: Add wrap.sh in lib/`arch` directories. wrap.sh runs the app without passing any debug flags
187 to ART, so the app runs as a release app. wrap.sh can be done by adding the script below in
210 def wrapFile = new File(dir, "wrap.sh")
212 writer.write('#!/system/bin/sh\n\$@\n')
232 and it also needs wrap.sh to use the compiled Java code. To compile Java code, we can pass
244 ```sh
260 ```sh
[all …]
/system/sepolicy/prebuilts/api/28.0/public/
Dvendor_shell.te10 # adbd: allow `adb shell /vendor/bin/sh` and `adb shell` then `/vendor/bin/sh`
/system/sepolicy/public/
Dvendor_shell.te10 # adbd: allow `adb shell /vendor/bin/sh` and `adb shell` then `/vendor/bin/sh`
/system/sepolicy/prebuilts/api/29.0/public/
Dvendor_shell.te10 # adbd: allow `adb shell /vendor/bin/sh` and `adb shell` then `/vendor/bin/sh`

12345