OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Sendmsg
(Results
1 - 4
of
4
) sorted by null
/system/extras/tests/net_test/
csocket.py
86
A string, a binary blob usable as the control data for a
sendmsg
call.
122
def
Sendmsg
(s, to, data, control, flags):
123
"""Python wrapper for
sendmsg
.
133
If
sendmsg
succeeds, returns the number of bytes written as an integer.
136
socket.error: If
sendmsg
fails.
176
# Call
sendmsg
.
177
ret = libc.
sendmsg
(s.fileno(), msghdr, 0)
srcaddr_selection_test.py
91
return csocket.
Sendmsg
(s, (dest, 53), "Hello", cmsgs, 0)
ping6_test.py
410
CheckEAFNoSupport(csocket.
Sendmsg
,
412
CheckEAFNoSupport(csocket.
Sendmsg
,
multinetwork_base.py
450
csocket.
Sendmsg
(s, (dstaddr, dstport), payload, cmsgs, csocket.MSG_CONFIRM)
Completed in 115 milliseconds