Home | History | Annotate | Download | only in examples

Lines Matching defs:statbuf

418     struct stat statbuf;
419 ok = fstat(fd, &statbuf);
426 if (!S_ISREG(statbuf.st_mode)) {
432 ptr = mmap(NULL, statbuf.st_size, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, (off_t) 0);
438 filelen = statbuf.st_size;
849 ok = munmap(ptr, statbuf.st_size);