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

  /external/autotest/client/cros/netprotos/
fake_host.py 19 def socket(self, family, sock_type):
23 @param sock_type: The socket type, for example SOCK_DGRAM.
26 sock = FakeSocket(self, family, sock_type)
38 def __init__(self, host, family, sock_type):
41 self._sock_type = sock_type
interface_host.py 34 def socket(self, family, sock_type):
40 @param sock_type: must be socket.SOCK_DGRAM.
43 if family != socket.AF_INET or sock_type != socket.SOCK_DGRAM:
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_sock.h 48 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type);
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_sock.h 48 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type);
  /device/google/marlin/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_sock.h 52 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type);
  /device/google/marlin/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 45 * @sock_type: socket type, TCP/UDP
49 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type)
56 switch (sock_type)
65 LOGE("unknown socket type =%d", sock_type);
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 45 * @sock_type: socket type, TCP/UDP
49 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type)
56 switch (sock_type)
65 CDBG_ERROR("%s: unknown socket type =%d", __func__, sock_type);
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 45 * @sock_type: socket type, TCP/UDP
49 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type)
56 switch (sock_type)
65 CDBG_ERROR("%s: unknown socket type =%d", __func__, sock_type);
  /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:__anon5259
174 PySocketModule.Sock_Type,
189 PyTypeObject *Sock_Type;
210 &PySocketModule.Sock_Type, (PyObject*)&Sock,
  /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:__anon5493
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...]
  /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:__anon5834
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...]
  /external/autotest/client/deps/lansim/src/py/
host.py 229 def socket(self, family, sock_type):
236 @param sock_type: The socket type, only SOCK_DGRAM is supported.
242 if sock_type != socket.SOCK_DGRAM:
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_ops.hpp 247 std::size_t servlen, int sock_type, asio::error_code& ec);
253 std::size_t servlen, int sock_type, asio::error_code& ec);
  /kernel/tests/net/test/
net_test.py 110 def Socket(family, sock_type, protocol):
111 s = socket(family, sock_type, protocol)
  /external/openssh/
ssh-agent.c 99 } sock_type; typedef in typeref:enum:__anon28158
103 sock_type type;
935 new_socket(sock_type type, int fd)
    [all...]

Completed in 534 milliseconds