/aosp12/hardware/invensense/65xx/libsensors_iio/software/build/android/ |
H A D | shared.mk | 46 for DIR in $(LIB_FOLDERS); do ( \ 47 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 49 for DIR in $(APP_FOLDERS); do ( \ 50 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 54 for DIR in $(LIB_FOLDERS); do ( \ 55 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 57 for DIR in $(APP_FOLDERS); do ( \ 62 for DIR in $(LIB_FOLDERS); do ( \ 65 for DIR in $(APP_FOLDERS); do ( \ 70 for DIR in $(LIB_FOLDERS); do ( \ [all …]
|
/aosp12/hardware/invensense/6515/libsensors_iio/software/build/android/ |
H A D | shared.mk | 46 for DIR in $(LIB_FOLDERS); do ( \ 47 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 49 for DIR in $(APP_FOLDERS); do ( \ 50 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 54 for DIR in $(LIB_FOLDERS); do ( \ 55 cd $$DIR && $(MAKE) -f shared.mk $@ ); \ 57 for DIR in $(APP_FOLDERS); do ( \ 62 for DIR in $(LIB_FOLDERS); do ( \ 65 for DIR in $(APP_FOLDERS); do ( \ 70 for DIR in $(LIB_FOLDERS); do ( \ [all …]
|
/aosp12/frameworks/rs/perf-test-scripts/ |
H A D | set-cpu-freq | 6 DIR="/sys/devices/system/cpu" 64 if fileexists $DIR/$core/online; then 65 adb shell "echo -n 1 > $DIR/$core/online" 71 elif fileexists $DIR/$core/cpufreq/stats/time_in_state; then 86 adb shell "echo -n $freq > $DIR/$core/cpufreq/scaling_min_freq" 87 adb shell "echo -n $freq > $DIR/$core/cpufreq/scaling_max_freq" 98 if fileexists $DIR/$core/online && [ `getprop $DIR/$core/online` -eq 0 ]; then 102 if fileexists $DIR/$core/cpufreq/scaling_cur_freq; then 103 frequency=`getprop $DIR/$core/cpufreq/scaling_cur_freq` 138 if fileexists $DIR/$core/online; then [all …]
|
H A D | set-gpu-freq | 6 DIR="/sys/class/kgsl/kgsl-3d0" 45 if fileexists $DIR/devfreq/available_frequencies; then 47 elif fileexists $DIR/gpu_available_frequencies; then 77 setprop $DIR/bus_split 0 78 setprop $DIR/devfreq/governor performance 79 setprop $DIR/force_bus_on 1 80 setprop $DIR/force_rail_on 1 81 setprop $DIR/force_clk_on 1 82 setprop $DIR/idle_timer 1000000 83 setprop $DIR/max_gpuclk $freq [all …]
|
H A D | get-thermal | 4 DIR="/sys/devices/virtual/thermal" 43 ZONES=`adb shell ls $DIR | tr -d '\r' | grep thermal_zone | tr -d thermal_zone | sort -n` 47 print_if_exists $DIR"/thermal_zone"$ZONE"/mode" MODE 48 print_if_exists $DIR"/thermal_zone"$ZONE"/temp" TEMP 49 print_if_exists $DIR"/thermal_zone"$ZONE"/type" TYPE 54 if ! direxists $DIR; then
|
H A D | switch-device | 8 DIR=`pwd` 10 cd $DIR 45 DIR=`pwd` 49 cd $DIR
|
/aosp12/frameworks/wilhelm/tools/mphtogen/ |
H A D | Makefile | 1 DIR = ../../src/autogen macro 2 ALL = $(DIR)/MPH_to_3DGroup.h $(DIR)/MPH_to_AudioPlayer.h $(DIR)/MPH_to_AudioRecorder.h \ 3 $(DIR)/MPH_to_Engine.h $(DIR)/MPH_to_LEDDevice.h $(DIR)/MPH_to_Listener.h \ 4 $(DIR)/MPH_to_MetadataExtractor.h $(DIR)/MPH_to_MidiPlayer.h $(DIR)/MPH_to_OutputMix.h \ 5 $(DIR)/MPH_to_Vibra.h
|
/aosp12/bionic/libc/bionic/ |
H A D | dirent.cpp | 53 struct DIR { struct 69 static DIR* __allocate_DIR(int fd) { in __allocate_DIR() 70 DIR* d = reinterpret_cast<DIR*>(malloc(sizeof(DIR))); in __allocate_DIR() 83 int dirfd(DIR* d) { in dirfd() 88 DIR* fdopendir(int fd) { in fdopendir() 102 DIR* opendir(const char* path) { in opendir() 107 static bool __fill_DIR(DIR* d) { in __fill_DIR() 132 dirent* readdir(DIR* d) { in readdir() 162 int closedir(DIR* d) { in closedir() 175 void rewinddir(DIR* d) { in rewinddir() [all …]
|
/aosp12/bionic/libc/include/ |
H A D | dirent.h | 90 typedef struct DIR DIR; typedef 98 DIR* opendir(const char* __path); 106 DIR* fdopendir(int __dir_fd); 116 struct dirent* readdir(DIR* __dir); 126 struct dirent64* readdir64(DIR* __dir) __INTRODUCED_IN(21); 128 int readdir_r(DIR* __dir, struct dirent* __entry, struct dirent** __buffer) __attribute__((__deprec… 137 int closedir(DIR* __dir); 143 void rewinddir(DIR* __dir); 152 void seekdir(DIR* __dir, long __location) __INTRODUCED_IN(23); 163 long telldir(DIR* __dir) __INTRODUCED_IN(23); [all …]
|
/aosp12/bionic/tests/headers/posix/ |
H A D | dirent_h.c | 34 INCOMPLETE_TYPE(DIR); in dirent_h() 47 FUNCTION(closedir, int (*f)(DIR*)); in dirent_h() 48 FUNCTION(dirfd, int (*f)(DIR*)); in dirent_h() 49 FUNCTION(fdopendir, DIR* (*f)(int)); in dirent_h() 50 FUNCTION(opendir, DIR* (*f)(const char*)); in dirent_h() 51 FUNCTION(readdir, struct dirent* (*f)(DIR*)); in dirent_h() 52 FUNCTION(readdir_r, int (*f)(DIR*, struct dirent*, struct dirent**)); in dirent_h() 53 FUNCTION(rewinddir, void (*f)(DIR*)); in dirent_h() 57 FUNCTION(seekdir, void (*f)(DIR*, long)); in dirent_h() 58 FUNCTION(telldir, long (*f)(DIR*)); in dirent_h()
|
/aosp12/frameworks/base/startop/scripts/iorap/ |
H A D | compiler_test.py | 35 DIR = os.path.abspath(os.path.dirname(__file__)) variable 36 TEXTCACHE = os.path.join(DIR, 'test_fixtures/compiler/common_textcache') 37 SYSTRACE = os.path.join(DIR, 'test_fixtures/compiler/common_systrace') 38 ARGV = [os.path.join(DIR, 'compiler.py'), '-i', TEXTCACHE, '-t', SYSTRACE] 39 PERFETTO_TRACE = os.path.join(DIR, 52 expected = os.path.join(DIR, 66 expected = os.path.join(DIR, 71 expected = os.path.join(DIR, 76 expected = os.path.join(DIR,
|
/aosp12/system/iorap/src/inode2filename/ |
H A D | system_call.h | 33 virtual DIR *opendir(const char *name) = 0; 36 virtual struct dirent *readdir(DIR *dirp) = 0; 39 virtual int closedir(DIR *dirp) = 0; 55 virtual DIR *opendir(const char *name) override { in opendir() 60 virtual struct dirent *readdir(DIR *dirp) override { in readdir() 65 virtual int closedir(DIR *dirp) override { in closedir()
|
/aosp12/hardware/qcom/sdm845/media/ |
H A D | configure.ac | 104 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 108 [AS_HELP_STRING([--with-utils-inc=DIR],[location of common headers])], 112 [AS_HELP_STRING([--with-cutils-inc=DIR],[location of common headers])], 116 [AS_HELP_STRING([--with-kernel-inc=DIR],[location of common headers])], 124 [AS_HELP_STRING([--with-adreno-inc=DIR],[location of common headers])], 132 [AS_HELP_STRING([--with-ui-inc=DIR],[location of common headers])], 136 [AS_HELP_STRING([--with-gralloc-inc=DIR],[location of common headers])], 144 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 148 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 152 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], [all …]
|
/aosp12/hardware/qcom/media/msm8998/ |
H A D | configure.ac | 114 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 118 [AS_HELP_STRING([--with-utils-inc=DIR],[location of common headers])], 122 [AS_HELP_STRING([--with-cutils-inc=DIR],[location of common headers])], 126 [AS_HELP_STRING([--with-kernel-inc=DIR],[location of common headers])], 134 [AS_HELP_STRING([--with-adreno-inc=DIR],[location of common headers])], 146 [AS_HELP_STRING([--with-ui-inc=DIR],[location of common headers])], 150 [AS_HELP_STRING([--with-gralloc-inc=DIR],[location of common headers])], 158 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 162 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 166 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], [all …]
|
/aosp12/build/make/tools/droiddoc/test/stubs/ |
H A D | run.sh | 17 DIR=build/make/tools/droiddoc/test/stubs 21 . $TOP/$DIR/func.sh 24 find $DIR/src -name "*.java" | xargs javac -d out/stubs_compiled 26 build_stubs a $DIR/src $A_STUBS 32 diff -r $DIR/expected $A_STUBS
|
/aosp12/frameworks/base/startop/scripts/trace_analyzer/ |
H A D | trace_analyzer_recursive | 16 DIR="$( cd "$(dirname "$0")" ; pwd -P )" 45 echo "$DIR/trace_analyzer.py" "$db_filename" "$trace_filename" "> /dev/null" 47 if ! "$DIR/trace_analyzer.py" "$db_filename" "$trace_filename" > /dev/null; then 54 echo "$DIR/run-sql-queries" "$db_filename" ">> '$output_file'" 58 if ! "$DIR/run-sql-queries" "$db_filename" >> "$output_file"; then
|
H A D | trace_analyzer_test.py | 36 DIR = os.path.abspath(os.path.dirname(__file__)) variable 38 sys.path.append(os.path.dirname(DIR)) 43 bin = os.path.join(DIR, 'trace_analyzer') 44 systrace = os.path.join(DIR, 'test_fixtures/common_systrace')
|
H A D | trace_analyzer | 16 DIR="$( cd "$(dirname "$0")" ; pwd -P )" 34 if ! "$DIR/trace_analyzer.py" "$SQLITE_FILENAME" "$TRACE_FILENAME" > /dev/null; then 39 if ! "$DIR/run-sql-queries" "$SQLITE_FILENAME"; then
|
/aosp12/hardware/qcom/sm8150/media/ |
H A D | configure.ac | 117 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 121 [AS_HELP_STRING([--with-utils-inc=DIR],[location of common headers])], 125 [AS_HELP_STRING([--with-cutils-inc=DIR],[location of common headers])], 129 [AS_HELP_STRING([--with-kernel-inc=DIR],[location of common headers])], 137 [AS_HELP_STRING([--with-adreno-inc=DIR],[location of common headers])], 145 [AS_HELP_STRING([--with-ui-inc=DIR],[location of common headers])], 149 [AS_HELP_STRING([--with-gralloc-inc=DIR],[location of common headers])], 157 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 161 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 165 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], [all …]
|
/aosp12/hardware/qcom/sm7250/media/ |
H A D | configure.ac | 109 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 113 [AS_HELP_STRING([--with-utils-inc=DIR],[location of common headers])], 117 [AS_HELP_STRING([--with-cutils-inc=DIR],[location of common headers])], 121 [AS_HELP_STRING([--with-kernel-inc=DIR],[location of common headers])], 129 [AS_HELP_STRING([--with-adreno-inc=DIR],[location of common headers])], 137 [AS_HELP_STRING([--with-ui-inc=DIR],[location of common headers])], 141 [AS_HELP_STRING([--with-gralloc-inc=DIR],[location of common headers])], 149 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 153 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], 157 [AS_HELP_STRING([--with-binder-inc=DIR],[location of common headers])], [all …]
|
/aosp12/frameworks/base/startop/scripts/app_startup/ |
H A D | run_app_with_prefetch | 35 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 36 source "$DIR/../iorap/common" 314 local current_compiler_filter_info="$("$DIR"/query_compiler_filter.py --package "$the_package")" 330 …verbose_print "$DIR"/force_compiler_filter --compiler-filter "$the_compiler_filter" --package "$th… 331 …"$DIR"/force_compiler_filter --compiler-filter "$the_compiler_filter" --package "$the_package" --a… 412 …metrics_header="$("$DIR/parse_metrics" --package "$package" --activity "$activity" --simulate --re… 414 …metrics_header="$("$DIR/parse_metrics" --package "$package" --activity "$activity" --simulate | pa… 440 …total_time="$(timeout $timeout "$DIR/launch_application" "$package" "$activity" | "$DIR/parse_metr… 442 …total_time="$(timeout $timeout "$DIR/launch_application" "$package" "$activity" | "$DIR/parse_metr…
|
/aosp12/frameworks/base/startop/scripts/iorap/generated/ |
H A D | codegen_protos | 17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 20 IORAP_SERIALIZE_DIR="${DIR}/../../../../../../system/iorap/src/serialize" 34 echo "$APROTOC" --proto_path="$IORAP_SERIALIZE_DIR" --python_out="$DIR" "${IORAP_PROTOS[@]}" 35 "$APROTOC" --proto_path="$IORAP_SERIALIZE_DIR" --python_out="$DIR" "${IORAP_PROTOS[@]}"
|
/aosp12/art/tools/ |
H A D | symbolize.sh | 58 DIR=$(dirname $FILE) 60 one $DIR $NAME 70 DIR=$(dirname $1) 72 one $DIR $NAME
|
/aosp12/frameworks/native/cmds/ip-up-vpn/ |
H A D | ip-up-vpn.c | 34 #define DIR "/data/misc/vpn/" macro 69 FILE *state = fopen(DIR ".tmp", "wb"); in main() 134 if (chmod(DIR ".tmp", 0444) || rename(DIR ".tmp", DIR "state")) { in main()
|
/aosp12/art/tools/dmtracedump/ |
H A D | dmtracedump.pl | 3 opendir(DIR, ".") || die "can't opendir $some_dir: $!"; 4 @traces = grep { /.*\.dmtrace\.data/ } readdir(DIR); 18 closedir DIR;
|