Lines Matching refs:buf
55 char buf[64]; in test_lookup() local
60 snprintf(buf, sizeof(buf), "/proc/self/fd/%u", fd); in test_lookup()
61 test_lookup_pass(buf); in test_lookup()
67 snprintf(buf, sizeof(buf), "/proc/self/fd/%c%u", c, fd); in test_lookup()
68 test_lookup_fail(buf); in test_lookup()
75 snprintf(buf, sizeof(buf), "/proc/self/fd/%u%c", fd, c); in test_lookup()
76 test_lookup_fail(buf); in test_lookup()
80 snprintf(buf, sizeof(buf), "/proc/self/fd/%d", i); in test_lookup()
81 test_lookup_fail(buf); in test_lookup()
84 snprintf(buf, sizeof(buf), "/proc/self/fd/%d", i); in test_lookup()
85 test_lookup_fail(buf); in test_lookup()
88 snprintf(buf, sizeof(buf), "/proc/self/fd/%u", u); in test_lookup()
89 test_lookup_fail(buf); in test_lookup()
92 snprintf(buf, sizeof(buf), "/proc/self/fd/%u", u); in test_lookup()
93 test_lookup_fail(buf); in test_lookup()