Home
last modified time | relevance | path

Searched refs:recursive (Results 1 – 25 of 65) sorted by relevance

123

/titanic_51/usr/src/grub/grub-0.97/
H A DMakefile.in56 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
57 html-recursive info-recursive install-data-recursive \
58 install-exec-recursive install-info-recursive \
59 install-recursive installcheck-recursive installdir
[all...]
/titanic_51/usr/src/cmd/ndmpd/ndmp/
H A Dndmpd_chkpnt.c189 snapshot_hold(char *volname, char *snapname, char *jname, boolean_t recursive) in snapshot_hold() argument
207 if (zfs_hold(zhp, p, jname, recursive, cleanup_fd) != 0) { in snapshot_hold()
218 boolean_t recursive) in snapshot_release() argument
230 if (zfs_release(zhp, p, jname, recursive) != 0) { in snapshot_release()
246 snapshot_create(char *volname, char *jname, boolean_t recursive, in snapshot_create() argument
259 if ((rv = zfs_snapshot(zlibh, snapname, recursive, NULL)) in snapshot_create()
271 if (hold && snapshot_hold(volname, snapname, jname, recursive) != 0) { in snapshot_create()
287 snapshot_destroy(char *volname, char *jname, boolean_t recursive, in snapshot_destroy() argument
302 if (recursive) { in snapshot_destroy()
314 snapshot_release(volname, namep, jname, recursive) ! in snapshot_destroy()
[all...]
H A Dndmpd_zfs.c142 * $ZFS_MODE: d | r | p [for dataset, recursive, or package]
603 * recursive ('r'): The dataset and its child file systems are backed up
1456 "defaulting to recursive"); in ndmpd_zfs_getenv_zfs_mode()
1463 } else if ((strcmp(envp, "recursive") == 0) || in ndmpd_zfs_getenv_zfs_mode()
1710 boolean_t recursive = B_FALSE; in ndmpd_zfs_snapshot_prepare() local
1740 recursive = B_TRUE; in ndmpd_zfs_snapshot_prepare()
1743 ndmpd_zfs_args->nz_snapname, recursive, B_FALSE, in ndmpd_zfs_snapshot_prepare()
1839 boolean_t recursive = B_FALSE; in ndmpd_zfs_snapshot_create() local
1849 recursive = B_TRUE; in ndmpd_zfs_snapshot_create()
1852 ndmpd_zfs_args->nz_snapname, recursive, B_FALS in ndmpd_zfs_snapshot_create()
1882 boolean_t recursive = B_FALSE; ndmpd_zfs_snapshot_unuse() local
[all...]
/titanic_51/usr/src/cmd/make/bin/
H A Drep.cc145 * get target name into recursive struct in report_recursive_init()
159 * Report a target as recursive.
178 * find an applicable recursive entry, if there isn't one, create it in report_recursive_dep()
238 * recursive entries. This can only happen if the Makefile in find_recursive_target()
276 * Mark a target as no longer recursive.
318 * Create or update list of recursive targets.
332 /* Go thru all targets and dump recursive dependencies */ in gather_recursive_deps()
351 if (lines->body.recursive.in_depinfo) in gather_recursive_deps()
353 if (!lines->body.recursive.has_built) in gather_recursive_deps()
356 lines->body.recursive in gather_recursive_deps()
[all...]
H A Dread2.cc628 /* enter the recursive prop for the target */ in enter_dependencies()
636 if ((line->body.recursive.directory == directory) && in enter_dependencies()
637 (line->body.recursive.target == name)) { in enter_dependencies()
638 line->body.recursive.makefiles = dp; in enter_dependencies()
639 line->body.recursive.has_built = in enter_dependencies()
646 line2->body.recursive.directory = directory; in enter_dependencies()
647 line2->body.recursive.target = name; in enter_dependencies()
648 line2->body.recursive.makefiles = dp; in enter_dependencies()
649 line2->body.recursive.has_built = in enter_dependencies()
651 line2->body.recursive in enter_dependencies()
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libcmd/
H A Drm.c56 "[r|R:recursive?Remove the contents of directories recursively.]"
57 "[u:unconditional?If \b--recursive\b and \b--force\b are also enabled then"
91 int recursive; /* remove subtrees too */ member
154 if (!state->recursive) in rm()
359 state.recursive = 1; in b_rm()
398 state.unconditional = state.unconditional && state.recursive && state.force; in b_rm()
399 if (state.recursive && state.fs3d) in b_rm()
H A Dcp.c44 "\b--preserve\b \b--recursive\b.]"
95 "[r|R:recursive?Operate on the contents of directories recursively.]"
174 int recursive; /* subtrees too */ member
347 if (!state->recursive) in visit()
758 state->recursive = 1; in b_cp()
813 state->recursive = 1; in b_cp()
856 state->recursive = 1; in b_cp()
984 if (!state->recursive) in b_cp()
H A Dcksum.c79 "[R:recursive?Recursively checksum the contents of directories.]"
130 int recursive; /* recursively descend dirs */ member
495 state.recursive = 1; in b_cksum()
590 else if (!*argv && !state.recursive) in b_cksum()
/titanic_51/usr/src/lib/libcmd/common/
H A Drm.c90 int recursive; /* remove subtrees too */ member
151 if (!state->recursive) in rm()
368 state.recursive = 1; in b_rm()
405 state.unconditional = state.unconditional && state.recursive && state.force; in b_rm()
406 if (state.recursive && state.fs3d) in b_rm()
H A Dcp.c160 int recursive; /* subtrees too */ member
329 if (!state->recursive) in visit()
734 state->recursive = 1; in b_cp()
762 state->recursive = 1; in b_cp()
801 state->recursive = 1; in b_cp()
921 if (!state->recursive) in b_cp()
H A Dcksum.c130 int recursive; /* recursively descend dirs */ member
495 state.recursive = 1; in b_cksum()
590 else if (!*argv && !state.recursive) in b_cksum()
/titanic_51/usr/src/lib/pyzfs/common/
H A Ddataset.py214 def snapshots_fromcmdline(dsnames, recursive): argument
224 if not recursive or e.errno != errno.ENOENT:
226 if recursive:
H A Dholds.py53 parser.add_option("-r", action="store_true", dest="recursive",
66 for ds in zfs.dataset.snapshots_fromcmdline(args, options.recursive):
/titanic_51/usr/src/cmd/grep/
H A Dgrep.c117 static int recursive(const char *, const struct stat *, int, struct FTW *);
261 if (nftw(path, recursive, MAX_DEPTH, walkflags) != 0) { in prepare()
273 recursive(const char *name, const struct stat *statp, int info, struct FTW *ftw) in recursive() function
/titanic_51/usr/src/cmd/rm/
H A Drm.c78 static boolean_t silent, interactive, recursive, ontty; variable
114 recursive = B_TRUE; in main()
142 if (recursive && stat("/", &rootdir) != 0) { in main()
325 * the memory is no longer valid. So after the recursive rm() in rm()
344 if (!recursive) { in rm()
/titanic_51/usr/src/cmd/fruadm/
H A Dfruadm.c57 static int found_frupath = 0, list_only = 0, recursive = 0, variable
833 if (!recursive) { in walk_tree()
836 } else if (process_self && !recursive) { in walk_tree()
876 recursive = 1; in main()
892 recursive = 1; in main()
/titanic_51/usr/src/lib/libsqlite/src/
H A Dbtree.h151 #define sqliteBtreePageDump(pBt, pgno, recursive)\ argument
152 (btOps(pBt)->PageDump(pBt, pgno, recursive))
/titanic_51/usr/src/lib/libzfs/common/
H A Dlibzfs_sendrecv.c635 boolean_t recursive; member
817 if (sd->recursive) in send_iterate_fs()
828 const char *tosnap, boolean_t recursive, nvlist_t **nvlp, avl_tree_t **avlp) in gather_nvlist() argument
841 sd.recursive = recursive; in gather_nvlist()
1280 * recursive, we need to send a full stream from the in dump_filesystem()
1282 * is a clone). If we're doing non-recursive, then let in dump_filesystem()
1664 * The send stream is recursive (i.e. dumps a hierarchy of snapshots) and
2342 boolean_t needagain, progress, recursive; in recv_incremental_replication() local
2347 recursive in recv_incremental_replication()
2630 boolean_t recursive; zfs_receive_package() local
2973 boolean_t recursive; zfs_receive_one() local
[all...]
H A Dlibzfs_dataset.c3775 zfs_snapshot(libzfs_handle_t *hdl, const char *path, boolean_t recursive, in zfs_snapshot() argument
3802 if (recursive) { in zfs_snapshot()
3950 zfs_rename(zfs_handle_t *zhp, const char *target, boolean_t recursive, in zfs_rename() argument
4006 if (recursive) { in zfs_rename()
4008 "recursive rename must be a snapshot")); in zfs_rename()
4047 if (recursive) { in zfs_rename()
4085 zc.zc_cookie = recursive; in zfs_rename()
4089 * if it was recursive, the one that actually failed will in zfs_rename()
4095 if (recursive && errno == EEXIST) { in zfs_rename()
4432 boolean_t recursive; member
4457 zfs_hold(zfs_handle_t * zhp,const char * snapname,const char * tag,boolean_t recursive,int cleanup_fd) zfs_hold() argument
4585 zfs_release(zfs_handle_t * zhp,const char * snapname,const char * tag,boolean_t recursive) zfs_release() argument
[all...]
/titanic_51/usr/src/lib/krb5/plugins/kdb/db2/
H A Dkdb_db2.c1305 int backwards, int recursive) in krb5_db2_db_iterate_ext() argument
1329 if (recursive && db->type != DB_BTREE) { in krb5_db2_db_iterate_ext()
1334 if (!recursive) { in krb5_db2_db_iterate_ext()
1355 if (!recursive) { in krb5_db2_db_iterate_ext()
1387 int backwards = 0, recursive = 0; in krb5_db2_db_iterate() local
1398 recursive = 1; in krb5_db2_db_iterate()
1414 return krb5_db2_db_iterate_ext(context, func, func_arg, backwards, recursive); in krb5_db2_db_iterate()
/titanic_51/usr/src/cmd/grep_xpg4/
H A Dgrep.c118 static int recursive(const char *, const struct stat *, int, struct FTW *);
418 if (nftw(path, recursive, MAX_DEPTH, walkflags) != 0) { in process_path()
435 recursive(const char *name, const struct stat *statp, int info, struct FTW *ftw) in recursive() function
/titanic_51/usr/src/lib/libpp/common/
H A DHISTORY145 04/21/87 replace yacc parser with recursive expr() from library streval()
185 fixed macro stack frame bug during recursive macro arg expansion
206 add #(x y...) -> "#x y..." for recursive directive evaluation
/titanic_51/usr/src/contrib/ast/src/lib/libpp/
H A DHISTORY145 04/21/87 replace yacc parser with recursive expr() from library streval()
185 fixed macro stack frame bug during recursive macro arg expansion
206 add #(x y...) -> "#x y..." for recursive directive evaluation
/titanic_51/usr/src/cmd/raidctl/
H A Draidctl.c167 static int snapshot_raidsystem(uint8_t recursive, uint8_t indent,
169 static int snapshot_ctl(raid_obj_handle_t ctl_handle, uint8_t recursive,
1435 * snapshot_raidsystem(recursive, indent, is_snapshot)
1440 snapshot_raidsystem(uint8_t recursive, uint8_t indent, uint8_t is_snapshot) in snapshot_raidsystem() argument
1449 if (snapshot_ctl(ctl_handle, recursive, indent, in snapshot_raidsystem()
1461 * snapshot_ctl(ctl_handle, recursive, indent, is_snapshot)
1466 snapshot_ctl(raid_obj_handle_t ctl_handle, uint8_t recursive, uint8_t indent, in snapshot_ctl() argument
1493 if (recursive == TRUE) { in snapshot_ctl()
/titanic_51/usr/src/cmd/sgs/gprof/common/
H A Dgprof.callg.blurb22 than recursive calls).

123