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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/security_Minijail0/src/
test-init 9 [ "$$" != "1" ] && die "not running as init"
test-pidns 9 [ "$$" != "2" ] && die "not in a new pid namespace"
test-userns-init 9 [ "$$" != "1" ] && die "not running as init"
test-userns-pidns 9 [ "$$" != "2" ] && die "not in a new pid namespace"
test-chroot 10 die () {
16 [ "$wd" != "/" ] && die "not in /"
17 [ ! -d /lib ] && die "no /lib"
18 [ ! -d /tmp-rw ] && die "no /tmp-rw"
19 [ ! -d /tmp-ro ] && die "no /tmp-ro"
20 echo 'x' > /tmp-rw/test-rw || die "non-writeable /tmp-rw"
21 echo 'x' > /tmp-ro/test-ro && die "writeable /tmp-ro"
test-pivotroot 10 die () {
16 [ "$wd" != "/" ] && die "not in /"
17 [ ! -d /lib ] && die "no /lib"
18 [ ! -d /tmp-rw ] && die "no /tmp-rw"
19 [ ! -d /tmp-ro ] && die "no /tmp-ro"
20 echo 'x' > /tmp-rw/test-rw || die "non-writeable /tmp-rw"
21 echo 'x' > /tmp-ro/test-ro && die "writeable /tmp-ro"
test-tmpfs 10 die () {
16 [ "$fs" != "tmpfs" ] && die "tmpfs"
test-remount 10 [ -w "$file" ] && die "can write to $file"
common.sh 5 die () { function
12 [ "$uid" != "$1" ] && die "uid $uid != $1"
17 [ "$euid" != "$1" ] && die "euid $euid != $1"
22 [ "$gid" != "$1" ] && die "gid $gid != $1"
28 [ "$egid" != "$1" ] && die "egid $egid != $1"
  /external/vboot_reference/utility/
enable_dev_usb_boot 10 die() { function
17 die "Sorry, your platform does not support booting from USB."
22 chromeos-firmwareupdate --mode=todev || die "Failed to enable USB boot."
26 die "Sorry, your firmware does not look like ChromeOS firmware."
30 crossystem dev_boot_usb=1 2>/dev/null || die "Failed to enable USB boot."
  /external/elfutils/libdw/
dwarf_cuoffset.c 1 /* Return offset of DIE in CU.
39 dwarf_cuoffset (Dwarf_Die *die)
41 return (die == NULL
43 : (Dwarf_Off) (die->addr - die->cu->startp));
dwarf_getscopes_die.c 1 /* Return scope DIEs containing given DIE.
37 scope_visitor (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg)
39 if (die->die.addr != *(void **) arg)
52 scopes[i++] = die->die;
53 die = die->parent;
55 while (die != NULL);
63 dwarf_getscopes_die (Dwarf_Die *die, Dwarf_Die **scopes
    [all...]
dwarf_dieoffset.c 1 /* Return offset of DIE.
39 dwarf_dieoffset (Dwarf_Die *die)
41 return (die == NULL
43 : (Dwarf_Off) (die->addr - die->cu->startp + die->cu->start));
dwarf_hasattr_integrate.c 1 /* Check whether DIE has specific attribute, integrating DW_AT_abstract_origin.
37 dwarf_hasattr_integrate (Dwarf_Die *die, unsigned int search_name)
43 if (INTUSE(dwarf_hasattr) (die, search_name))
47 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin,
50 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, &attr_mem);
54 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
56 while (die != NULL);
dwarf_diecu.c 1 /* Return CU DIE containing given DIE.
38 dwarf_diecu (Dwarf_Die *die, Dwarf_Die *result, uint8_t *address_sizep,
41 if (die == NULL)
44 *result = CUDIE (die->cu);
47 *address_sizep = die->cu->address_size;
49 *offset_sizep = die->cu->offset_size;
dwarf_attr_integrate.c 1 /* Return specific DWARF attribute of a DIE, integrating indirections.
37 dwarf_attr_integrate (Dwarf_Die *die, unsigned int search_name,
44 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (die, search_name, result);
48 attr = INTUSE(dwarf_attr) (die, DW_AT_abstract_origin, result);
50 attr = INTUSE(dwarf_attr) (die, DW_AT_specification, result);
54 die = INTUSE(dwarf_formref_die) (attr, &die_mem);
56 while (die != NULL);
  /external/libnl/
autogen.sh 3 die() { function
10 cd "$BASEDIR" || die "Could not change into base directory $BASEDIR"
12 autoreconf -fi || die "Error during autoreconf"
15 doc/autogen.sh || die "Error during doc/autogen.sh"
  /external/tensorflow/tensorflow/tools/gcs_test/
gcs_smoke_wrapper.sh 27 die () { function
41 die "ERROR: Command-line argument GCS_BUCKET_URL is not supplied"
47 die "ERROR: Unable to find gcloud at path ${GCLOUD_BIN}"
52 die "ERROR: Unable to find gsutil at path ${GSUTIL_BIN}"
57 die "ERROR: Required gcloud environment variable "\
64 die "ERROR: Unable to find Python file at ${GCS_SMOKE_PY}"
70 die "ERROR: Failed to remove existing log file ${LOG_FILE}"
78 die "FAIL: End-to-end test of GCS access from TensorFlow failed."
88 die "ERROR: Failed to activate gcloud service account with JSON key file"
93 die "FAIL: Unable to determine the URL to the new tfrecord file in GCS
    [all...]
  /external/elfutils/tests/
run-get-pubnames.sh 24 [ 0] "main", die: 104, cu: 11
27 [ 1] "a", die: 174, cu: 11
30 [ 2] "bar", die: 295, cu: 202
33 [ 3] "foo", die: 5721, cu: 5628
36 [ 0] "bar", die: 72, cu: 11
39 [ 1] "foo", die: 2490, cu: 2429
42 [ 2] "main", die: 2593, cu: 2532
45 [ 3] "a", die: 2663, cu: 2532
rerequest_tag.c 36 Dwarf_Die die_mem, *die; local
37 die = dwarf_offdie (dw, 11, &die_mem);
38 assert (die == &die_mem);
39 assert (dwarf_tag (die) == 0);
41 die = dwarf_offdie (dw, 11, &die_mem);
42 assert (die == &die_mem);
43 assert (dwarf_tag (die) == 0);
  /external/wpa_supplicant_8/hs20/server/www/
add-free.php 7 die($sqliteerror);
13 die("Missing session id");
15 die("Invalid session id");
19 die("Session not found");
28 die("Free account disabled");
35 die("Free account not found");
40 die("Failed to update session database");
cert-enroll.php 7 die($sqliteerror);
13 die("Missing session id");
15 die("Invalid session id");
19 die("Session not found");
29 die("Failed to update session database");
  /external/curl/tests/libtest/
test610.pl 14 mkdir $arg || die "$!";
17 rmdir $arg || die "$!";
20 unlink $arg || die "$!";
24 move($arg,$arg2) || die "$!";
27 ! -e $arg || die "Path $arg exists";
  /frameworks/opt/net/lowpan/tests/
commandtest.sh 5 die () { function
17 adb wait-for-device || die
33 kill -0 $WPANTUND_PID || die "wpantund failed to start"
37 adb shell lowpanctl -I wpan5 status || die
39 adb shell lowpanctl -I wpan5 form blahnet || die
41 adb shell lowpanctl -I wpan5 status || die
43 adb shell ifconfig wpan5 || die
45 adb shell dumpsys netd || die
47 adb shell ip -6 rule || die
49 adb shell ip -6 route list table wpan5 || die
    [all...]
  /external/tensorflow/tensorflow/tools/dist_test/
build_server.sh 38 die() { function
45 die "Usage: $0 <docker_image_name> <whl_location> [--test]"
61 die "Failed to copy files to ${BUILD_DIR}"
72 die "Failed to download tensorflow whl file from URL: ${WHL_FILE_LOCATION}"
80 die "ERROR: Unable to find dockerfile: ${DOCKER_FILE}"
87 die "Failed to build docker image: ${DOCKER_IMG_NAME}"

Completed in 535 milliseconds

1 2 3 4 5 6 7 8 91011>>