/src/sys/kern/ |
uipc_syscalls.c | 119 error = fsocreate(SCARG(uap, domain), NULL, SCARG(uap, type), 430 error = fsocreate(domain, &so1, type|flags, proto, &fd, &fp1, NULL); 435 error = fsocreate(domain, &so2, type|flags, proto, &fd, &fp2, so1); 1289 error = fsocreate(AF_LOCAL, &rso, SOCK_STREAM|soflags, 0, &rfd, &rf, 1293 error = fsocreate(AF_LOCAL, &wso, SOCK_STREAM|soflags, 0, &wfd, &wf,
|
uipc_socket.c | 574 * fsocreate: create a socket and a file descriptor associated with it. 586 fsocreate(int domain, struct socket **sop, int type, int proto, int *fdout, function in typeref:typename:int
|
/src/sys/sys/ |
socketvar.h | 309 int fsocreate(int, struct socket **, int, int, int *, file_t **,
|
/src/sys/net/ |
if_gre.c | 447 rc = fsocreate(af, &so, sp->sp_type, sp->sp_proto, &fd, &fp, NULL); 449 GRE_DPRINTF(sc, "fsocreate failed\n");
|