/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/moto/shamu/camera/QCamera/stack/mm-camera-interface/inc/ |
mm_camera_sock.h | 40 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type);
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/inc/ |
mm_camera_sock.h | 40 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type);
|
/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);
|
/hardware/qcom/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);
|
/hardware/qcom/camera/msmcobalt/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/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/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 47 * mm_camera_sock_type_t sock_type: socket type, TCP/UDP
50 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type)
57 switch (sock_type)
66 CDBG_ERROR("%s: unknown socket type =%d", __func__, sock_type);
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/src/ |
mm_camera_sock.c | 47 * @sock_type: socket type, TCP/UDP 51 int mm_camera_socket_create(int cam_id, mm_camera_sock_type_t sock_type) 58 switch (sock_type) 67 CDBG_ERROR("%s: unknown socket type =%d", __func__, sock_type);
|
/hardware/qcom/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);
|
/hardware/qcom/camera/msmcobalt/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);
|
/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/toybox/toys/pending/ |
netstat.c | 318 char sock_flags[32] = {0,}, *sock_type, *sock_state, *bptr = toybuf, *term; local 344 sock_type = ss_type[sz-1]; 345 else sock_type = ss_type[type]; 361 refcount, sock_flags, sock_type, sock_state, inode);
|
/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);
|
/system/extras/tests/net_test/ |
net_test.py | 114 def Socket(family, sock_type, protocol): 115 s = socket(family, sock_type, protocol)
|