HomeSort by relevance Sort by last modified time
    Searched refs:errstr (Results 51 - 75 of 194) sorted by null

1 23 4 5 6 7 8

  /external/llvm/bindings/go/llvm/
support.go 31 var errstr *C.char
34 C.LLVMLoadLibraryPermanently2(libstr, &errstr)
35 if errstr != nil {
36 err := errors.New(C.GoString(errstr))
37 C.free(unsafe.Pointer(errstr))
  /external/strace/tests/
kexec_load.c 83 const char *errstr; local
111 errstr = sprintrc(rc);
120 printf("...], %s) = %s\n", flags[3].str, errstr);
125 errstr = sprintrc(rc);
135 flags[0].str, errstr);
140 errstr = sprintrc(rc);
148 printf("], %s) = %s\n", flags[1].str, errstr);
152 errstr = sprintrc(rc);
159 printf("...], %s) = %s\n", flags[2].str, errstr);
setrlimit.c 55 const char *errstr = sprintrc(rc); local
59 errstr);
xstatfsx.c 108 const char *errstr = sprintrc(rc); local
110 printf("NULL) = %s\n", errstr);
115 errstr = sprintrc(rc);
117 printf("%#lx) = %s\n", addr, errstr);
kcmp.c 48 const char *errstr; local
51 errstr = sprintrc(rc);
66 printf(") = %s\n", errstr);
lookup_dcookie.c 45 const char *errstr; local
55 errstr = sprintrc(rc);
68 printf("%" PRIu64 ") = %s\n", (uint64_t) len, errstr);
  /external/strace/tests-m32/
kexec_load.c 83 const char *errstr; local
111 errstr = sprintrc(rc);
120 printf("...], %s) = %s\n", flags[3].str, errstr);
125 errstr = sprintrc(rc);
135 flags[0].str, errstr);
140 errstr = sprintrc(rc);
148 printf("], %s) = %s\n", flags[1].str, errstr);
152 errstr = sprintrc(rc);
159 printf("...], %s) = %s\n", flags[2].str, errstr);
setrlimit.c 55 const char *errstr = sprintrc(rc); local
59 errstr);
xstatfsx.c 108 const char *errstr = sprintrc(rc); local
110 printf("NULL) = %s\n", errstr);
115 errstr = sprintrc(rc);
117 printf("%#lx) = %s\n", addr, errstr);
kcmp.c 48 const char *errstr; local
51 errstr = sprintrc(rc);
66 printf(") = %s\n", errstr);
lookup_dcookie.c 45 const char *errstr; local
55 errstr = sprintrc(rc);
68 printf("%" PRIu64 ") = %s\n", (uint64_t) len, errstr);
  /external/strace/tests-mx32/
kexec_load.c 83 const char *errstr; local
111 errstr = sprintrc(rc);
120 printf("...], %s) = %s\n", flags[3].str, errstr);
125 errstr = sprintrc(rc);
135 flags[0].str, errstr);
140 errstr = sprintrc(rc);
148 printf("], %s) = %s\n", flags[1].str, errstr);
152 errstr = sprintrc(rc);
159 printf("...], %s) = %s\n", flags[2].str, errstr);
setrlimit.c 55 const char *errstr = sprintrc(rc); local
59 errstr);
xstatfsx.c 108 const char *errstr = sprintrc(rc); local
110 printf("NULL) = %s\n", errstr);
115 errstr = sprintrc(rc);
117 printf("%#lx) = %s\n", addr, errstr);
kcmp.c 48 const char *errstr; local
51 errstr = sprintrc(rc);
66 printf(") = %s\n", errstr);
lookup_dcookie.c 45 const char *errstr; local
55 errstr = sprintrc(rc);
68 printf("%" PRIu64 ") = %s\n", (uint64_t) len, errstr);
  /external/openssh/openbsd-compat/
strtonum.c 41 const char *errstr; member in struct:errval
64 *errstrp = ev[error].errstr;
  /frameworks/native/cmds/cmd/
cmd.cpp 186 const char* errstr; local
188 case BAD_TYPE: errstr = "Bad type"; break;
189 case FAILED_TRANSACTION: errstr = "Failed transaction"; break;
190 case FDS_NOT_ALLOWED: errstr = "File descriptors not allowed"; break;
191 case UNEXPECTED_NULL: errstr = "Unexpected null"; break;
192 default: errstr = strerror(-err); break;
194 ALOGW("Failure calling service %s: %s (%d)", argv[1], errstr, -err);
195 aout << "cmd: Failure calling service " << argv[1] << ": " << errstr << " ("
  /external/netcat/
netcat.c 132 const char *errstr, *proxyhost = "", *proxyport = NULL; local
175 iflag = strtonum(optarg, 0, UINT_MAX, &errstr);
176 if (errstr)
177 errx(1, "interval %s: %s", errstr, optarg);
215 RT_TABLEID_MAX, &errstr);
216 if (errstr)
217 errx(1, "rtable %s: %s", errstr, optarg);
227 timeout = strtonum(optarg, 0, INT_MAX / 1000, &errstr);
228 if (errstr)
229 errx(1, "timeout %s: %s", errstr, optarg)
859 const char *errstr; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
file_util.py 33 except os.error, (errno, errstr):
34 raise DistutilsFileError("could not open '%s': %s" % (src, errstr))
39 except os.error, (errno, errstr):
41 "could not delete '%s': %s" % (dst, errstr))
45 except os.error, (errno, errstr):
47 "could not create '%s': %s" % (dst, errstr))
52 except os.error, (errno, errstr):
54 "could not read from '%s': %s" % (src, errstr))
61 except os.error, (errno, errstr):
63 "could not write to '%s': %s" % (dst, errstr))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
file_util.py 33 except os.error, (errno, errstr):
34 raise DistutilsFileError("could not open '%s': %s" % (src, errstr))
39 except os.error, (errno, errstr):
41 "could not delete '%s': %s" % (dst, errstr))
45 except os.error, (errno, errstr):
47 "could not create '%s': %s" % (dst, errstr))
52 except os.error, (errno, errstr):
54 "could not read from '%s': %s" % (src, errstr))
61 except os.error, (errno, errstr):
63 "could not write to '%s': %s" % (dst, errstr))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
file_util.py 33 except os.error, (errno, errstr):
34 raise DistutilsFileError("could not open '%s': %s" % (src, errstr))
39 except os.error, (errno, errstr):
41 "could not delete '%s': %s" % (dst, errstr))
45 except os.error, (errno, errstr):
47 "could not create '%s': %s" % (dst, errstr))
52 except os.error, (errno, errstr):
54 "could not read from '%s': %s" % (src, errstr))
61 except os.error, (errno, errstr):
63 "could not write to '%s': %s" % (dst, errstr))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
file_util.py 33 except os.error, (errno, errstr):
34 raise DistutilsFileError("could not open '%s': %s" % (src, errstr))
39 except os.error, (errno, errstr):
41 "could not delete '%s': %s" % (dst, errstr))
45 except os.error, (errno, errstr):
47 "could not create '%s': %s" % (dst, errstr))
52 except os.error, (errno, errstr):
54 "could not read from '%s': %s" % (src, errstr))
61 except os.error, (errno, errstr):
63 "could not write to '%s': %s" % (dst, errstr))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
file_util.py 33 except os.error, (errno, errstr):
34 raise DistutilsFileError("could not open '%s': %s" % (src, errstr))
39 except os.error, (errno, errstr):
41 "could not delete '%s': %s" % (dst, errstr))
45 except os.error, (errno, errstr):
47 "could not create '%s': %s" % (dst, errstr))
52 except os.error, (errno, errstr):
54 "could not read from '%s': %s" % (src, errstr))
61 except os.error, (errno, errstr):
63 "could not write to '%s': %s" % (dst, errstr))
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
sysroot-prefix.exp 124 proc single_sysroot_prefix_test { type xtestname finalscript ldopt errstr } {
146 set expect_success [expr [string length $errstr] == 0]
149 ($expect_success || [regexp "$errstr" $ld_output]) } {
158 proc run_sysroot_prefix_test { type name templ p ldopt errstr } {
170 $finalscript $ldopt $errstr
181 set errstr [lindex $item 4]
182 run_sysroot_prefix_test $type "$descr $name" $templ "$p" "$ldopt" "$errstr"

Completed in 5052 milliseconds

1 23 4 5 6 7 8