Home | History | Annotate | Download | only in nftw

Lines Matching refs:temp

45 FILE *temp;
255 setup(); /* temp file is now open */
267 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
268 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
269 fprintf(temp, "depth, int flags) shall recursively descend the\n");
270 fprintf(temp, "directory hierarchy rooted in path until it has\n");
271 fprintf(temp,
273 fprintf(temp, "each object in the directory tree, and return 0.\n\n");
282 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
283 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
284 fprintf(temp, "depth, int flags) when flags contains FTW_PHYS shall\n");
285 fprintf(temp, "not traverse symbolic links.\n\n");
294 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
295 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
296 fprintf(temp,
298 fprintf(temp,
300 fprintf(temp, "not report the same file twice.\n\n");
309 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
310 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
311 fprintf(temp,
313 fprintf(temp, "report all files in a directory before reporting the\n");
314 fprintf(temp, "directory.\n\n");
323 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
324 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
325 fprintf(temp, "depth, int flags) when flags does not contain\n");
326 fprintf(temp, "FTW_DEPTH shall report a directory before reporting\n");
327 fprintf(temp, "the files in that directory.\n\n");
336 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
337 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
338 fprintf(temp,
340 fprintf(temp,
342 fprintf(temp, "as it reports files in that directory.\n\n");
351 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
352 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
353 fprintf(temp, "depth, int flags) shall pass the path-name of the\n");
354 fprintf(temp, "current object as the first argument of the function\n");
355 fprintf(temp, "fn.\n\n");
364 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
365 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
366 fprintf(temp, "depth, int flags) shall pass a pointer to a stat\n");
367 fprintf(temp, "structure containing information about the current\n");
368 fprintf(temp, "object as the second argument to fn.\n\n");
377 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
378 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
379 fprintf(temp, "depth, int flags) shall pass FTW_F as the third\n");
380 fprintf(temp,
390 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
391 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
392 fprintf(temp, "depth, int flags) shall pass FTW_D as the third\n");
393 fprintf(temp, "argument of the function fn when the object is a\n");
394 fprintf(temp, "directory.\n\n");
403 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
404 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
405 fprintf(temp, "depth, int flags) shall pass FTW_DP as the third\n");
406 fprintf(temp, "argument of the function fn when the object is a\n");
407 fprintf(temp, "directory and subdirectories have been visited.\n\n");
416 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
417 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
418 fprintf(temp, "depth, int flags) shall pass FTW_SL as the third\n");
419 fprintf(temp, "argument of the function fn when the object is a\n");
420 fprintf(temp, "symbolic link.\n\n");
429 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
430 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
431 fprintf(temp, "depth, int flags) shall pass FTW_SLN as the third\n");
432 fprintf(temp, "argument of the function fn when the object is a\n");
433 fprintf(temp, "symbolic link that does not name an existing file.\n\n");
442 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
443 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
444 fprintf(temp, "depth, int flags) shall pass FTW_DNR as the third\n");
445 fprintf(temp, "argument of the function fn when the object is a\n");
446 fprintf(temp, "directory that cannot be read.\n\n");
455 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
456 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
457 fprintf(temp, "depth, int flags) shall pass FTW_NS as the third\n");
458 fprintf(temp,
460 fprintf(temp, "object because of lack of appropriate permission.\n\n");
469 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
470 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
471 fprintf(temp, "depth, int flags) shall pass a structure which\n");
472 fprintf(temp, "contains the offset into the pathname of the object\n");
473 fprintf(temp, "and the depth relative to the root of the walk\n");
474 fprintf(temp,
476 fprintf(temp, "fn.\n\n");
485 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
486 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
487 fprintf(temp, "depth, int flags) shall pass FTW_SL as the third\n");
488 fprintf(temp, "argument to the function fn if and only if the\n");
489 fprintf(temp, "FTW_PHYS flag is included in flags.\n\n");
498 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
499 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
500 fprintf(temp, "depth, int flags) shall pass FTW_SLN as the third\n");
501 fprintf(temp, "argument to the function fn if and only if the\n");
502 fprintf(temp, "FTW_PHYS flag is not included in flags.\n\n");
511 fprintf(temp, "On a call to int nftw(const char *path, int\n");
512 fprintf(temp, "(*fn)(const char *, const struct stat *, int, struct\n");
513 fprintf(temp,
515 fprintf(temp, "passed to the function fn is FTW_DNR then the\n");
516 fprintf(temp,
526 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
527 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
528 fprintf(temp,
530 fprintf(temp,
540 fprintf(temp, "On a call to int nftw(const char *path, int\n");
541 fprintf(temp, "(*fn)(const char *, const struct stat *, int, struct\n");
542 fprintf(temp, "FTW *), int depth, int flags) depth shall be the\n");
543 fprintf(temp,
553 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
554 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
555 fprintf(temp, "depth, int flags) shall use at most one file\n");
556 fprintf(temp, "descriptor for each directory level.\n\n");
565 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n");
566 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n");
567 fprintf(temp, "depth, int flags) when the function fn returns a\n");
568 fprintf(temp, "non-zero value shall stop and return the value\n");
569 fprintf(temp, "returned by fn.\n\n");
578 fprintf(temp, "ENAMETOOLONG in errno and return -1 on a call to int\n");
579 fprintf(temp, "nftw(const char *path, int (*fn)(const char *, const\n");
580 fprintf(temp, "struct stat *, int, struct FTW *), int depth, int\n");
581 fprintf(temp, "flags) when the length of path exceeds PATH_MAX.\n\n");
590 fprintf(temp, "ENAMETOOLONG in errno and return -1 on a call to int\n");
591 fprintf(temp, "nftw(const char *path, int (*fn)(const char *, const\n");
592 fprintf(temp, "struct stat *, int, struct FTW *), int depth, int\n");
593 fprintf(temp, "flags) when a component of path exceeds NAME_MAX.\n\n");
602 fprintf(temp, "ENOENT in errno and return -1 on a call to int\n");
603 fprintf(temp, "nftw(const char *path, int (*fn)(const char *, const\n");
604 fprintf(temp, "struct stat *, int, struct FTW *), int depth, int\n");
605 fprintf(temp,
615 fprintf(temp, "ENOENT in errno and return -1 on a call to int\n");
616 fprintf(temp, "nftw(const char *path, int (*fn)(const char *, const\n");
617 fprintf(temp, "struct stat *, int, struct FTW *), int depth, int\n");
618 fprintf(temp, "flags) when path points to an empty string.\n\n");
627 fprintf(temp, "ENOTDIR in errno and return -1 on a call to int\n");
628 fprintf(temp, "nftw(const char *path, int (*fn)(const char *, const\n");
629 fprintf(temp, "struct stat *, int, struct FTW *), int depth, int\n");
630 fprintf(temp, "flags) when path is not a directory.\n\n");
639 fprintf(temp, "EACCES in errno and return -1 on a call to int\n");
640 fprintf(temp, "nftw(const char *path, int (*fn)(const char *, const\n");
641 fprintf(temp, "struct stat *, int, struct FTW *), int depth, int\n");
642 fprintf(temp, "flags) when search permission is denied for any\n");
643 fprintf(temp, "component of path.\n\n");
652 fprintf(temp, "EACCES in errno and return -1 on a call to int\n");
653 fprintf(temp, "nftw(const char *path, int (*fn)(const char *, const\n");
654 fprintf(temp, "struct stat *, int, struct FTW *), int depth, int\n");
655 fprintf(temp, "flags) when read permission is denied for path.\n\n");
677 temp = stderr;