Searched defs:die (Results 1 - 9 of 9) sorted by relevance

/system/extras/simpleperf/demo/SimpleperfExampleOfKotlin/
H A Dgradlew22 die ( ) { function
74 die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
81 which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/
H A Dgradlew22 die ( ) { function
74 die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
81 which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
/system/extras/simpleperf/demo/SimpleperfExampleWithNative/
H A Dgradlew22 die ( ) { function
74 die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
81 which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
/system/libufdt/tests/
H A Dcommon.sh20 die() { function
/system/core/fastboot/
H A Dutil.cpp56 if (s == 0) die("out of memory");
60 void die(const char *fmt, ...) function
/system/update_engine/scripts/
H A Dtest_paycheck.sh64 die() { function
119 die "Error: unexpected number of arguments"
128 die "cannot find ${paycheck} or file is not executable"
H A Dbrillo_update_payload62 die() { function
74 . "${path}/shflags" || die "Could not load ${path}/shflags."
78 die "Could not find shflags."
267 die "Cleanup encountered an error."
274 die "Cleanup success after an error."
313 die "Couldn't detect the image format of ${image}"
377 die "Invalid partition names found in the partition list."
381 die "The list of partitions is empty. Can't generate a payload."
486 die "You must specify an output filename with --payload FILENAME"
489 die "Yo
[all...]
/system/core/cpio/
H A Dmkbootfs.c26 void die(const char *why, ...) function
128 if(strlen(out) != (unsigned int)olen) die("ACK!");
171 if(d == 0) die("cannot open directory '%s'", in);
241 if(lstat(in, &s)) die("could not stat '%s'\n", in);
248 if(fd < 0) die("cannot open '%s' for read", in);
251 if(tmp == 0) die("cannot allocate %d bytes", s.st_size);
254 die("cannot read %d bytes", s.st_size);
268 if(size < 0) die("cannot read symlink '%s'", in);
271 die("Unknown '%s' (mode %d)?\n", in, s.st_mode);
296 if (f == NULL) die("faile
[all...]
/system/extras/cpustats/
H A Dcpustats.c50 #define die(...) { fprintf(stderr, __VA_ARGS__); exit(EXIT_FAILURE); } macro
108 if (cpu_count < 1) die("Unexpected cpu count\n");
111 if (!old_cpus) die("Could not allocate struct cpu_info\n");
113 if (!new_cpus) die("Could not allocate struct cpu_info\n");
117 if (freq_count < 1) die("Unexpected frequency scale count\n");
120 if (!new_cpus[i].freqs) die("Could not allocate struct freq_info\n");
122 if (!old_cpus[i].freqs) die("Could not allocate struct freq_info\n");
132 if (!new_total_cpu.freqs) die("Could not allocate struct freq_info\n");
134 if (!old_total_cpu.freqs) die("Could not allocate struct freq_info\n");
182 die("presen
[all...]

Completed in 2036 milliseconds