HomeSort by relevance Sort by last modified time
    Searched refs:LOG_FILE (Results 1 - 25 of 25) sorted by null

  /device/google/dragon/
touchfwup.sh 3 LOG_FILE="/data/misc/touchfwup/rmi4update.txt"
5 echo -n "Updater date/time: " > ${LOG_FILE}
6 date >> ${LOG_FILE}
7 echo "Pre-update Firmware version:" >> ${LOG_FILE}
8 /system/bin/rmi4update -d /dev/hidraw0 -p >> ${LOG_FILE} 2>&1
10 /system/bin/rmi4update -d /dev/hidraw0 /vendor/firmware/synaptics.img >> ${LOG_FILE} 2>&1
12 echo "Post-update Firmware version:" >> ${LOG_FILE}
13 /system/bin/rmi4update -d /dev/hidraw0 -p >> ${LOG_FILE} 2>&1
15 chmod a+r ${LOG_FILE}
dump_bq25892.sh 3 LOG_FILE="/data/misc/fw_logs/bq25892.txt"
5 /system/bin/fwtool ec usbpd 0 > ${LOG_FILE}
6 /system/bin/fwtool ec usbpdpower >> ${LOG_FILE}
7 /system/bin/fwtool ec bq25892 >> ${LOG_FILE}
8 /system/bin/fwtool ec pi3usb9281 >> ${LOG_FILE}
9 /system/bin/fwtool ec console >> ${LOG_FILE}
10 /system/bin/fwtool ec bq27742 >> ${LOG_FILE}
11 chmod a+r ${LOG_FILE}
  /external/ltp/testcases/realtime/func/pi-tests/
run_auto.sh 16 export LOG_FILE="$LOG_DIR/$LOG_FORMAT-testpi-1.log"
18 PYTHONPATH=../../ python parse-testpi1.py $LOG_FILE 2>&1 | tee -a $LOG_FILE
20 export LOG_FILE="$LOG_DIR/$LOG_FORMAT-testpi-2.log"
22 PYTHONPATH=../../ python parse-testpi2.py $LOG_FILE 2>&1 | tee -a $LOG_FILE
24 export LOG_FILE="$LOG_DIR/$LOG_FORMAT-testpi-4.log"
26 PYTHONPATH=../../ python parse-testpi1.py $LOG_FILE 2>&1 | tee -a $LOG_FILE
29 export LOG_FILE="
    [all...]
  /external/ltp/testcases/realtime/perf/latency/
run_auto.sh 9 LOG_FILE="$LOG_DIR/$LOG_FORMAT-pthread_cond_many.log"
11 echo -e "Logging to: " | tee -a $LOG_FILE
12 echo -e "$LOG_FILE " | tee -a $LOG_FILE
13 echo -e "and to local individual .out files " | tee -a $LOG_FILE
29 echo -e "pthread_cond_many configuration:" | tee -a $LOG_FILE
30 echo -e "number of threads = $nthread " | tee -a $LOG_FILE
31 echo -e "number of iterations = $iter " | tee -a $LOG_FILE
32 echo -e "number of processes = $nproc " | tee -a $LOG_FILE
  /external/ltp/testcases/realtime/func/measurement/
run_auto.sh 17 LOG_FILE="$LOG_DIR/$LOG_FORMAT-rdtsc-latency.log"
20 LOG_FILE="$LOG_DIR/$LOG_FORMAT-preempt_timing.log"
  /external/ltp/testcases/realtime/scripts/
run_c_files.sh 42 if [ "$LOG_FILE" = "" ]; then
43 LOG_FILE="$LOG_DIR/$LOG_FORMAT-${cmd}${params// /}.log"
50 echo "Logging to $LOG_FILE"
55 ) | tee -a $LOG_FILE
  /system/core/logwrapper/include/logwrap/
logwrap.h 49 * log), or LOG_FILE (and you need to specify a pathname in the
55 * file_path: if log_target has the LOG_FILE bit set, then this parameter
72 #define LOG_FILE 4
  /external/linux-kselftest/tools/testing/selftests/pstore/
common_tests 64 LOG_FILE=$LOG_DIR/`basename $0`.log
66 date > $LOG_FILE
68 /bin/echo "$@" | tee -a $LOG_FILE
  /external/linux-kselftest/tools/testing/selftests/ftrace/
ftracetest 115 LOG_FILE=$LOG_DIR/ftracetest.log
117 date > $LOG_FILE
119 echo "$@" | tee -a $LOG_FILE
122 cat $1 | tee -a $LOG_FILE
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyGetAppFrameRateEvent.java 51 private static final String LOG_FILE = new File(Environment.getExternalStorageDirectory(),
91 Log.w(TAG, "file: " +LOG_FILE);
92 writer = new FileWriter(LOG_FILE, true); // true = append
MonkeyPowerEvent.java 36 private static final String LOG_FILE = "/sdcard/autotester.log";
119 writer = new FileWriter(LOG_FILE, true); // true = append
MonkeyGetFrameRateEvent.java 50 private static final String LOG_FILE = "/sdcard/avgFrameRateOut.txt";
83 writer = new FileWriter(LOG_FILE, true); // true = append
  /tools/test/connectivity/acts/tests/google/ble/power/
BleScanPowerTest.py 49 LOG_FILE = "BLEPOWER.log"
95 if not self.check_pmc_status(self.LOG_FILE, "READY",
109 json_data = self.check_pmc_timestamps(self.LOG_FILE)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/
build.sh 31 LOG_FILE=/dev/null
66 echo "COMMAND: >>>> $@" >> $LOG_FILE
80 if [ "$LOG_FILE" ]; then
81 echo "$@" >> $LOG_FILE
188 LOG_FILE=$OUT_DIR/build.log
189 rm -f $LOG_FILE && touch $LOG_FILE
191 echo "To follow build, use in another terminal: tail -F $LOG_FILE"
build-mingw64-toolchain.sh 30 LOG_FILE=/dev/null
65 echo "COMMAND: >>>> $@" >> $LOG_FILE
79 if [ "$LOG_FILE" ]; then
80 echo "$@" >> $LOG_FILE
295 LOG_FILE=$TEMP_DIR/build.log
296 rm -f $LOG_FILE && touch $LOG_FILE
298 echo "To follow build, use in another terminal: tail -F $LOG_FILE"
  /system/core/logwrapper/
logwrap.c 165 if (log_info->log_target & LOG_FILE) {
331 if ((log_target & LOG_FILE) && !file_path) {
332 /* No file_path specified, clear the LOG_FILE bit */
333 log_target &= ~LOG_FILE;
336 if (log_target & LOG_FILE) {
340 log_target &= ~LOG_FILE;
455 if (log_target & LOG_FILE) {
  /external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/
SimpleLogger.java 141 private static String LOG_FILE = "System.err";
200 LOG_FILE = getStringProperty(LOG_FILE_KEY, LOG_FILE);
201 TARGET_STREAM = computeTargetStream(LOG_FILE);
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
slf4j-simple-1.7.5.jar 
maven-embedder-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-simple/1.7.2/
slf4j-simple-1.7.2.jar 
  /system/core/fs_mgr/
fs_mgr.cpp 207 true, LOG_KLOG | LOG_FILE, true, const_cast<char*>(FSCK_LOG_FILE), NULL, 0);
211 LOG_KLOG | LOG_FILE, true, const_cast<char*>(FSCK_LOG_FILE), NULL, 0);
233 &status, true, LOG_KLOG | LOG_FILE,
350 &status, true, LOG_KLOG | LOG_FILE,
415 &status, true, LOG_KLOG | LOG_FILE,
    [all...]
  /tools/test/connectivity/acts/tests/google/bt/power/
A2dpPowerTest.py 68 LOG_FILE = "A2DPPOWER.log"
245 if not self.check_pmc_status(self.LOG_FILE, "READY",
256 self.check_pmc_status(self.LOG_FILE, "SUCCEED",
    [all...]
  /frameworks/base/core/java/android/os/
RecoverySystem.java 89 private static final File LOG_FILE = new File(RECOVERY_DIR, "log");
526 LOG_FILE.delete();
814 LOG_FILE.delete();
    [all...]
  /bootable/recovery/
recovery.cpp 105 static const char *LOG_FILE = "/cache/recovery/log";
468 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
472 chmod(LOG_FILE, 0600);
473 chown(LOG_FILE, AID_SYSTEM, AID_SYSTEM);
939 std::string log_file(filename);
941 log_file += "." + std::to_string(i);
944 if (ensure_path_mounted(log_file.c_str()) == 0 && access(log_file.c_str(), R_OK) == 0) {
945 entries.push_back(std::move(log_file));
    [all...]
  /external/abi-compliance-checker/
abi-compliance-checker.pl     [all...]

Completed in 933 milliseconds