Searched refs:fts_open (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.10.1/Libc-1044.1.2/include/
H A Dfts.h105 int fts_options; /* fts_open options, global flags */
185 FTS *fts_open(char * const *, int,
186 int (*)(const FTSENT **, const FTSENT **)) __DARWIN_INODE64(fts_open); variable
189 FTS *fts_open(char * const *, int,
190 int (*)(const FTSENT **, const FTSENT **)) LIBC_INODE64(fts_open); variable
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/include/
H A Dfts.h40 * fts_open flags
125 FTS* fts; /* fts_open() handle */
156 extern FTS* fts_open(char* const*, int, int(*)(FTSENT* const*, FTSENT* const*));
/macosx-10.10.1/file_cmds-242/chflags/
H A Dchflags.c144 if ((ftsp = fts_open(++argv, fts_options , 0)) == NULL)
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dnftw.c101 is a looping symlink; fts_open is succesful and fts_read
124 ftsp = fts_open((char * const *)paths, ftsflags, NULL);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_codesigning/
H A Ddirscanner.cpp152 mFTS = fts_open((char * const *)paths, options, NULL);
H A Dresources.cpp75 mFTS = fts_open((char * const *)paths, FTS_PHYSICAL | FTS_COMFOLLOW | FTS_NOCHDIR, NULL);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Ddirscanner.cpp152 mFTS = fts_open((char * const *)paths, options, NULL);
H A Dresources.cpp75 mFTS = fts_open((char * const *)paths, FTS_PHYSICAL | FTS_COMFOLLOW | FTS_NOCHDIR, NULL);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Dftwalk.c76 if (!(f = fts_open((char* const*)path, flags, comparf ? ftscompare : 0)))
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dchmod.c262 if (!(fts = fts_open(argv, flags, NiL)))
H A Drm.c407 if (fts = fts_open(argv, FTS_PHYSICAL, NiL))
H A Dchgrp.c395 if (!(fts = fts_open(argv + 1, flags, NiL)))
H A Dcksum.c592 else if (!(fts = fts_open(argv, flags, state.sort)))
H A Dcp.c513 if (fts = fts_open((char**)e, FTS_NOCHDIR|FTS_ONEPATH|FTS_PHYSICAL|FTS_NOPOSTORDER|FTS_NOSTAT|FTS_NOSEEDOTDIR, NiL))
986 if (fts = fts_open(argv, state->flags, NiL))
/macosx-10.10.1/removefile-35/
H A Dremovefile_tree_walker.c129 stream = fts_open(trees, FTS_PHYSICAL | FTS_NOCHDIR, NULL);
/macosx-10.10.1/srm-7/srm/src/
H A Dtree_walker.c153 if ( (stream = fts_open(trees, FTS_PHYSICAL | FTS_NOCHDIR, NULL)) == NULL )
154 errorp("fts_open() returned NULL");
/macosx-10.10.1/file_cmds-242/chmod/
H A Dchmod.c359 if ((ftsp = fts_open(++argv, fts_options, 0)) == NULL)
360 err(1, "fts_open");
/macosx-10.10.1/file_cmds-242/chown/
H A Dchown.c172 if ((ftsp = fts_open(++argv, fts_options, 0)) == NULL)
/macosx-10.10.1/file_cmds-242/mtree/
H A Dverify.c80 if ((t = fts_open(argv, ftsoptions, NULL)) == NULL)
81 err(1, "line %d: fts_open", lineno);
H A Dcreate.c109 if ((t = fts_open(argv, ftsoptions, dsort)) == NULL)
110 err(1, "fts_open()");
/macosx-10.10.1/file_cmds-242/pax/
H A Dftree.c75 static int ftsopts; /* options to be used on fts_open */
88 * initialize the options passed to fts_open() during this run of pax
281 * arg is processed until the first successful fts_open().
345 if ((ftsp = fts_open(farray, ftsopts, NULL)) != NULL)
/macosx-10.10.1/shell_cmds-179/find/
H A Dfind.c71 * tell fts_open() how to order the traversal of the hierarchy.
264 tree = fts_open(myPaths, ftsoptions, (issort ? find_compare : NULL));
/macosx-10.10.1/file_cmds-242/cp/
H A Dcp.c297 if ((ftsp = fts_open(argv, fts_options, NULL)) == NULL)
298 err(1, "fts_open");
/macosx-10.10.1/file_cmds-242/rm/
H A Drm.c201 if (!(fts = fts_open(argv, flags, NULL))) {
/macosx-10.10.1/kext_tools-384.1.4/
H A Dsafecalls.c414 if ((fts = fts_open(pathv, ftsoptions, NULL)) == NULL) goto finish;

Completed in 358 milliseconds

12