/frameworks/wilhelm/tools/mphtogen/ |
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
|
/frameworks/rs/perf-test-scripts/ |
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" 69 if fileexists $DIR/$core/cpufreq/scaling_available_frequencies; then 70 frequencies=(`getprop $DIR/$core/cpufreq/scaling_available_frequencies`) 71 elif fileexists $DIR/$core/cpufreq/stats/time_in_state; then 72 … frequencies=(`adb shell cat $DIR/$core/cpufreq/stats/time_in_state | cut -f1 -d " " | tr -d '\r'`) 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 [all …]
|
D | set-gpu-freq | 6 DIR="/sys/class/kgsl/kgsl-3d0" 45 if fileexists $DIR/devfreq/available_frequencies; then 46 frequencies=(`getprop $DIR/devfreq/available_frequencies`) 47 elif fileexists $DIR/gpu_available_frequencies; then 48 frequencies=(`getprop $DIR/gpu_available_frequencies`) 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 [all …]
|
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
|
D | switch-device | 8 DIR=`pwd` 10 cd $DIR 45 DIR=`pwd` 49 cd $DIR
|
/frameworks/base/startop/scripts/iorap/ |
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,
|
D | dump_trace_pb | 17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 29 path_to_perfetto_proto="$DIR/../../../../../external/perfetto/protos/perfetto/trace/perfetto_trace.…
|
D | dump_compiled_pb | 17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 29 path_to_proto="$DIR/../../../../../system/iorap/src/serialize/TraceFile.proto"
|
D | compiler_device.py | 22 DIR = os.path.abspath(os.path.dirname(__file__)) variable 23 sys.path.append(os.path.dirname(DIR)) # framework/base/startop/script 28 IORAP_COMMON_BASH_SCRIPT = os.path.join(DIR, 'common')
|
D | collector | 17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 18 APP_STARTUP_DIR="$DIR/../app_startup/" 19 source "$DIR/common" 41 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
D | compiler.py | 25 DIR = os.path.abspath(os.path.dirname(__file__)) variable 26 sys.path.append(os.path.dirname(DIR))
|
/frameworks/base/startop/scripts/trace_analyzer/ |
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
|
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')
|
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
|
D | run-sql-queries | 16 DIR="$( cd "$(dirname "$0")" ; pwd -P )" 36 sqlite3 "$DB_TARGET" < "$DIR"/"$filename"
|
/frameworks/base/startop/scripts/iorap/generated/ |
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[@]}"
|
/frameworks/base/startop/scripts/app_startup/ |
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…
|
D | force_compiler_filter | 27 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 28 source "$DIR/lib/common" 121 "$DIR"/unlock_screen 123 local output=$("$DIR"/launch_application "$package" "$activity")
|
D | parse_metrics | 49 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 50 source "$DIR/lib/common" 211 if [[ -x "$DIR/metrics/$package" ]]; then 212 source "$DIR/metrics/$package" "$timestamp" 214 verbose_print parse_metrics: no per-package metrics script found at "$DIR/metrics/$package"
|
D | launch_application | 17 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 18 source "$DIR/lib/common"
|
/frameworks/native/cmds/ip-up-vpn/ |
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()
|
/frameworks/base/startop/scripts/app_startup/lib/ |
D | app_runner_test.py | 55 os.path.join(RUNNER.DIR, 89 os.path.join(RUNNER.DIR, 96 DIR=os.path.realpath(os.path.dirname(RUNNER.DIR)),
|
D | app_runner.py | 61 DIR = os.path.abspath(os.path.dirname(__file__)) variable in AppRunner 62 APP_STARTUP_DIR = os.path.dirname(DIR) 63 IORAP_COMMON_BASH_SCRIPT = os.path.realpath(os.path.join(DIR, 197 DIR=AppRunner.APP_STARTUP_DIR,
|
/frameworks/base/config/ |
D | generate-preloaded-classes.sh | 22 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 23 cat "$DIR/copyright-header"
|
/frameworks/native/cmds/installd/ |
D | utils.cpp | 79 DIR* dir = opendir(root_path.c_str()); in resolve_ce_path_by_inode_or_fallback() 354 DIR* dir = opendir(path.c_str()); in get_known_users() 478 static int _delete_dir_contents(DIR *d, in _delete_dir_contents() 499 DIR *subdir; in _delete_dir_contents() 577 DIR *d; in delete_dir_contents() 601 DIR *d; in delete_dir_contents_fd() 641 DIR *ds = fdopendir(sdfd); in _copy_dir_files() 688 DIR *ds = nullptr; in copy_dir_files() 689 DIR *dd = nullptr; in copy_dir_files() 792 DIR* dir = opendir(parent.c_str()); in read_path_inode() [all …]
|