HomeSort by: relevance | last modified time | path
    Searched refs:userbuf (Results 1 - 4 of 4) sorted by relevancy

  /src/libexec/identd/
identd.c 329 char userbuf[LOGIN_NAME_MAX]; /* actual user name (or numeric uid) */ local in function:idhandle
462 /* Fill in userbuf with user name if possible, else numeric UID. */
465 (void)snprintf(userbuf, sizeof(userbuf), "%u", uid);
470 (void)strlcpy(userbuf, pw->pw_name, sizeof(userbuf));
489 idbuf, userbuf);
490 (void)strlcpy(idbuf, userbuf, sizeof(idbuf));
495 idbuf, userbuf, gethost((struct sockaddr *)&ss[0]));
511 idbuf, userbuf, gethost((struct sockaddr *)&ss[0]))
    [all...]
  /src/sys/dev/
video.c 1553 video_queue_buf(struct video_softc *sc, struct v4l2_buffer *userbuf)
1559 if (userbuf->type != vs->vs_type) {
1561 userbuf->type, vs->vs_type));
1564 if (userbuf->index >= vs->vs_nbufs) {
1566 userbuf->index, vs->vs_nbufs));
1572 if (userbuf->memory != V4L2_MEMORY_MMAP) {
1574 userbuf->memory));
1580 vb = vs->vs_buf[userbuf->index];
1589 memcpy(userbuf, driverbuf, sizeof(*driverbuf));
  /src/sys/dev/pci/
xmm7360.c 275 #define copy_from_user(kbuf, userbuf, sz) \
278 int error = copyin(userbuf, kbuf, sz); \
283 #define copy_to_user(kbuf, userbuf, sz) \
286 int error = copyout(userbuf, kbuf, sz); \
  /src/libexec/httpd/
bozohttpd.c 1064 char *userbuf; local in function:handle_redirect
1079 bozoasprintf(httpd, &userbuf, "/~%s%s", request->hr_user, url);
1080 url = userbuf;
1082 userbuf = NULL;
1165 free(userbuf);

Completed in 17 milliseconds