/src/tests/lib/libc/sys/ |
t_connect.c | 50 int sd, val, slist; local in function:ATF_TC_BODY 53 slist = socket(AF_INET, SOCK_STREAM, 0); 57 ATF_REQUIRE(slist > 0); 65 ATF_REQUIRE_EQ(bind(slist, 67 ATF_REQUIRE_EQ(listen(slist, 1), 0); 95 close(slist);
|
/src/usr.bin/sortinfo/ |
sortinfo.c | 57 static struct section *slist; variable in typeref:struct:section * 65 slist = erealloc(slist, maxsections * sizeof(*slist)); 67 slist[nsections].name = line; 68 slist[nsections].nlines = 0; 69 slist[nsections].maxlines = 20; 70 slist[nsections].lines = ecalloc(slist[nsections].maxlines, 71 sizeof(*slist[nsections].lines)) [all...] |
/src/libexec/ftpd/ |
conf.c | 516 static StringList *slist = NULL; local in function:show_chdir_messages 527 if (slist != NULL) 528 sl_free(slist, 1); 529 slist = NULL; 537 if (slist == NULL) 538 slist = sl_init(); 539 if (slist == NULL) { 549 if (sl_find(slist, curwd) != NULL) 553 if (sl_add(slist, cp) == -1)
|