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

1 2

  /external/valgrind/memcheck/tests/arm64-linux/
scalar.h 37 int myerrno = errno; \
39 if (E == myerrno) { \
42 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
53 int myerrno = errno; \
55 if (E == myerrno) { \
58 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
  /external/valgrind/memcheck/tests/darwin/
scalar.h 39 int myerrno = errno; \
41 if (E == myerrno) { \
44 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
55 int myerrno = errno; \
57 if (E == myerrno) { \
60 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
  /external/valgrind/memcheck/tests/x86-linux/
scalar.h 36 int myerrno = errno; \
38 if (E == myerrno) { \
41 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
52 int myerrno = errno; \
54 if (E == myerrno) { \
57 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
  /external/valgrind/memcheck/tests/solaris/
scalar.h 19 int myerrno = errno; \
21 if (myerrno == E) { \
25 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
exceptions.c 598 PyObject *myerrno = NULL, *strerror = NULL, *filename = NULL; local
609 &myerrno, &strerror, &filename)) {
612 Py_CLEAR(self->myerrno); /* replacing */
613 self->myerrno = myerrno;
614 Py_INCREF(self->myerrno);
639 Py_CLEAR(self->myerrno);
657 Py_VISIT(self->myerrno);
689 if (self->myerrno) {
690 Py_INCREF(self->myerrno);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
exceptions.c 598 PyObject *myerrno = NULL, *strerror = NULL, *filename = NULL; local
609 &myerrno, &strerror, &filename)) {
612 Py_CLEAR(self->myerrno); /* replacing */
613 self->myerrno = myerrno;
614 Py_INCREF(self->myerrno);
639 Py_CLEAR(self->myerrno);
657 Py_VISIT(self->myerrno);
689 if (self->myerrno) {
690 Py_INCREF(self->myerrno);
    [all...]
  /external/python/cpython2/Objects/
exceptions.c 596 PyObject *myerrno = NULL, *strerror = NULL, *filename = NULL; local
607 &myerrno, &strerror, &filename)) {
610 Py_INCREF(myerrno);
611 Py_XSETREF(self->myerrno, myerrno);
633 Py_CLEAR(self->myerrno);
651 Py_VISIT(self->myerrno);
683 if (self->myerrno) {
684 Py_INCREF(self->myerrno);
685 PyTuple_SET_ITEM(tuple, 0, self->myerrno);
    [all...]
  /external/python/cpython3/Objects/
exceptions.c 744 PyObject **myerrno, PyObject **strerror,
766 myerrno, strerror,
786 *myerrno = PyLong_FromLong(errcode);
787 if (!*myerrno)
792 PyTuple_SET_ITEM(newargs, 0, *myerrno);
809 PyObject *myerrno, PyObject *strerror,
851 Py_XINCREF(myerrno);
852 self->myerrno = myerrno;
899 PyObject *myerrno = NULL, *strerror = NULL local
966 PyObject *myerrno = NULL, *strerror = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.h 75 PyObject *myerrno; member in struct:__anon4378
_iomodule.c 102 PyObject *myerrno = NULL, *strerror = NULL;
110 &myerrno, &strerror, &written))
113 baseargs = PyTuple_Pack(2, myerrno, strerror);
116 /* This will take care of initializing of myerrno and strerror members */
100 PyObject *myerrno = NULL, *strerror = NULL; local
bufferedio.c 735 if (env_err->myerrno != NULL &&
736 PyObject_RichCompareBool(env_err->myerrno, eintr_int, Py_EQ) > 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.h 70 PyObject *myerrno; member in struct:__anon4691
_iomodule.c 102 PyObject *myerrno = NULL, *strerror = NULL;
110 &myerrno, &strerror, &written))
113 baseargs = PyTuple_Pack(2, myerrno, strerror);
116 /* This will take care of initializing of myerrno and strerror members */
100 PyObject *myerrno = NULL, *strerror = NULL; local
bufferedio.c 707 if (env_err->myerrno != NULL &&
708 PyObject_RichCompareBool(env_err->myerrno, eintr_int, Py_EQ) > 0) {
    [all...]
  /external/python/cpython2/Modules/_io/
_iomodule.h 80 PyObject *myerrno; member in struct:__anon32712
_iomodule.c 102 PyObject *myerrno = NULL, *strerror = NULL;
110 &myerrno, &strerror, &written))
113 baseargs = PyTuple_Pack(2, myerrno, strerror);
116 /* This will take care of initializing of myerrno and strerror members */
100 PyObject *myerrno = NULL, *strerror = NULL; local
bufferedio.c 734 if (env_err->myerrno != NULL &&
735 PyObject_RichCompareBool(env_err->myerrno, eintr_int, Py_EQ) > 0) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyerrors.h 56 PyObject *myerrno; member in struct:__anon4357
67 PyObject *myerrno; member in struct:__anon4358
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyerrors.h 56 PyObject *myerrno; member in struct:__anon4663
67 PyObject *myerrno; member in struct:__anon4664
  /external/python/cpython2/Include/
pyerrors.h 56 PyObject *myerrno; member in struct:__anon32605
67 PyObject *myerrno; member in struct:__anon32606
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyerrors.h 56 PyObject *myerrno; member in struct:__anon66496
67 PyObject *myerrno; member in struct:__anon66497
  /prebuilts/gdb/linux-x86/include/python2.7/
pyerrors.h 56 PyObject *myerrno; member in struct:__anon66618
67 PyObject *myerrno; member in struct:__anon66619
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyerrors.h 56 PyObject *myerrno; member in struct:__anon1011
67 PyObject *myerrno; member in struct:__anon1012
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyerrors.h 56 PyObject *myerrno; member in struct:__anon1134
67 PyObject *myerrno; member in struct:__anon1135
  /external/python/cpython3/Include/
pyerrors.h 53 PyObject *myerrno; member in struct:__anon33173

Completed in 460 milliseconds

1 2