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

  /external/honggfuzz/
subproc.c 245 int sock_type = SOCK_STREAM; local
247 sock_type |= SOCK_CLOEXEC;
249 if (socketpair(AF_UNIX, sock_type, 0, sv) == -1) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
socketmodule.h 128 int sock_type; /* Socket type, e.g., SOCK_STREAM */ member in struct:__anon4241
174 PySocketModule.Sock_Type,
189 PyTypeObject *Sock_Type;
210 &PySocketModule.Sock_Type, (PyObject*)&Sock,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
socketmodule.h 128 int sock_type; /* Socket type, e.g., SOCK_STREAM */ member in struct:__anon4816
174 PySocketModule.Sock_Type,
189 PyTypeObject *Sock_Type;
210 &PySocketModule.Sock_Type, (PyObject*)&Sock,
socketmodule.c 448 The sock_type variable contains pointers to various functions,
449 some of which call new_sockobject(), which uses sock_type, so
451 static PyTypeObject sock_type; variable
732 s->sock_type = type;
758 PyType_GenericNew(&sock_type, NULL, NULL);
3126 static PyTypeObject sock_type = { variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
socketmodule.h 128 int sock_type; /* Socket type, e.g., SOCK_STREAM */ member in struct:__anon4475
175 PySocketModule.Sock_Type,
190 PyTypeObject *Sock_Type;
211 &PySocketModule.Sock_Type, (PyObject*)&Sock,
socketmodule.c 453 The sock_type variable contains pointers to various functions,
454 some of which call new_sockobject(), which uses sock_type, so
456 static PyTypeObject sock_type; variable
790 s->sock_type = type;
816 PyType_GenericNew(&sock_type, NULL, NULL);
3208 static PyTypeObject sock_type = { variable
    [all...]
  /external/python/cpython2/Modules/
socketmodule.h 128 int sock_type; /* Socket type, e.g., SOCK_STREAM */ member in struct:__anon32870
175 PySocketModule.Sock_Type,
190 PyTypeObject *Sock_Type;
211 &PySocketModule.Sock_Type, (PyObject*)&Sock,
socketmodule.c 477 The sock_type variable contains pointers to various functions,
478 some of which call new_sockobject(), which uses sock_type, so
480 static PyTypeObject sock_type; variable
814 s->sock_type = type;
840 PyType_GenericNew(&sock_type, NULL, NULL);
3233 static PyTypeObject sock_type = { variable
    [all...]
  /external/python/cpython3/Modules/
socketmodule.h 172 int sock_type; /* Socket type, e.g., SOCK_STREAM */ member in struct:__anon33498
218 PySocketModule.Sock_Type,
233 PyTypeObject *Sock_Type;
socketmodule.c 492 The sock_type variable contains pointers to various functions,
493 some of which call new_sockobject(), which uses sock_type, so
495 static PyTypeObject sock_type; variable
637 s->sock_type &= (~SOCK_NONBLOCK);
639 s->sock_type |= SOCK_NONBLOCK;
934 s->sock_type = type;
965 PyType_GenericNew(&sock_type, NULL, NULL);
4788 static PyTypeObject sock_type = { variable
    [all...]
  /external/ltp/testcases/network/netstress/
netstress.c 99 static int sock_type = SOCK_STREAM; variable
234 if (errno == ETIME && sock_type != SOCK_STREAM) {
249 int cfd = SAFE_SOCKET(family, sock_type, protocol);
398 hints.ai_socktype = sock_type;
523 if (sock_type == SOCK_STREAM &&
538 if (sock_type == SOCK_STREAM &&
569 hints.ai_socktype = sock_type;
579 sfd = SAFE_SOCKET(family, sock_type, protocol);
805 sock_type = SOCK_DGRAM;
810 sock_type = SOCK_DCCP
    [all...]

Completed in 519 milliseconds