HomeSort by relevance Sort by last modified time
    Searched defs:errBuf (Results 1 - 9 of 9) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_os2.c 33 char errBuf[256];
34 PyOS_snprintf(errBuf, sizeof(errBuf),
37 PyErr_SetString(PyExc_ImportError, errBuf);
dynload_next.c 44 char errBuf[512];
83 PyOS_snprintf(errBuf, 512, "Failure linking new module: %s: %s",
85 errString = errBuf;
dynload_win.c 204 char errBuf[256];
227 PyOS_snprintf(errBuf, sizeof(errBuf),
240 strcpy(errBuf, "DLL load failed: ");
241 len = strlen(errBuf);
242 strncpy(errBuf+len, theInfo,
243 sizeof(errBuf)-len);
244 errBuf[sizeof(errBuf)-1] = '\0';
246 PyErr_SetString(PyExc_ImportError, errBuf);
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 141 StringBuilder errBuf = (StringBuilder) execArgs[1];
143 synchronized (errBuf) {
144 if (errBuf.length() > 0) {
145 fail(errBuf.toString());
234 final StringBuilder errBuf = new StringBuilder();
237 synchronized (errBuf) {
250 errBuf.append(new String(bytes));
261 errBuf.append(new String(out.toByteArray()));
286 return new Object[] { proc, errBuf };
  /system/netd/server/
IptablesRestoreController.cpp 107 std::string errBuf;
254 if (process->errBuf.empty()) {
264 command.c_str(), process->errBuf.c_str());
265 process->errBuf.clear();
319 // i == STDERR_IDX: accumulate stderr into errBuf.
320 process->errBuf.append(buffer, size);
  /external/deqp/framework/delibs/deutil/
deProcess.c 302 char errBuf[256];
306 while ((result = read(statusPipe[0], errBuf, 1)) == -1)
315 while (errPos < DE_LENGTH_OF_ARRAY(errBuf))
317 result = read(statusPipe[0], errBuf+errPos, 1);
325 errBuf[errPos] = 0;
336 deProcess_setError(process, errBuf);
547 char errBuf[256];
556 deSprintf(errBuf, sizeof(errBuf), "%s, error %d: %s", msg, error, msgBuf);
558 return deProcess_setError(process, errBuf);
    [all...]
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 191 VideoErrorBuffer errBuf;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatTest.java     [all...]

Completed in 1896 milliseconds