OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:socketFd
(Results
1 - 3
of
3
) sorted by null
/system/netd/server/
FwmarkServer.cpp
32
int
socketFd
= -1;
33
int error = processClient(client, &
socketFd
);
34
if (
socketFd
>= 0) {
35
close(
socketFd
);
48
int FwmarkServer::processClient(SocketClient* client, int*
socketFd
) {
62
char cmsg[CMSG_SPACE(sizeof(*
socketFd
))];
89
cmsgh->cmsg_len == CMSG_LEN(sizeof(*
socketFd
))) {
90
memcpy(
socketFd
, CMSG_DATA(cmsgh), sizeof(*
socketFd
));
93
if (*
socketFd
< 0)
[
all
...]
/system/netd/client/
NetdClient.cpp
87
int
socketFd
= libcSocket(domain, type, protocol);
88
if (
socketFd
== -1) {
93
if (int error = setNetworkForSocket(netId,
socketFd
)) {
94
return closeFdAndSetErrno(
socketFd
, error);
97
return
socketFd
;
119
int
socketFd
;
121
socketFd
= libcSocket(AF_INET6, SOCK_DGRAM | SOCK_CLOEXEC, 0);
123
socketFd
= socket(AF_INET6, SOCK_DGRAM | SOCK_CLOEXEC, 0);
125
if (
socketFd
< 0) {
128
int error = setNetworkForSocket(netId,
socketFd
);
[
all
...]
/external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar
Completed in 337 milliseconds