Home
last modified time | relevance | path

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

123

/titanic_41/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 installdirs-recursive \
60 pdf-recursive ps-recursive uninstall-info-recursive \
61 uninstall-recursive
191 $(MAKE) $(AM_MAKEFLAGS) all-recursive
255 target=`echo $@ | sed s/-recursive//`; \
271 mostlyclean-recursive clean-recursive distclean-recursive \
272 maintainer-clean-recursive:
[all …]
/titanic_41/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) != 0) { in snapshot_destroy()
[all …]
H A Dndmpd_zfs.c1710 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_FALSE) != 0) { in ndmpd_zfs_snapshot_create()
1882 boolean_t recursive = B_FALSE; in ndmpd_zfs_snapshot_unuse() local
1888 recursive = B_TRUE; in ndmpd_zfs_snapshot_unuse()
1891 snapdata_p->nzs_snapname, recursive, B_FALSE, &zfs_err); in ndmpd_zfs_snapshot_unuse()
/titanic_41/usr/src/cmd/make/bin/
H A Drep.cc351 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_depinfo=true; in gather_recursive_deps()
365 APPEND_NAME(lines->body.recursive.directory, in gather_recursive_deps()
368 APPEND_NAME(lines->body.recursive.target, in gather_recursive_deps()
373 for (dp = lines->body.recursive.makefiles; in gather_recursive_deps()
H A Dread2.cc636 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_depinfo = false; in enter_dependencies()
/titanic_41/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_41/usr/src/lib/pyzfs/common/
H A Ddataset.py213 def snapshots_fromcmdline(dsnames, recursive): argument
223 if not recursive or e.errno != errno.ENOENT:
225 if recursive:
H A Dholds.py65 for ds in zfs.dataset.snapshots_fromcmdline(args, options.recursive):
/titanic_41/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_41/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()
344 if (!recursive) { in rm()
/titanic_41/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_41/usr/src/lib/libsqlite/src/
H A Dbtree.h151 #define sqliteBtreePageDump(pBt, pgno, recursive)\ argument
152 (btOps(pBt)->PageDump(pBt, pgno, recursive))
/titanic_41/usr/src/lib/libzfs/common/
H A Dlibzfs_sendrecv.c633 boolean_t recursive; member
815 if (sd->recursive) in send_iterate_fs()
826 const char *tosnap, boolean_t recursive, nvlist_t **nvlp, avl_tree_t **avlp) in gather_nvlist() argument
839 sd.recursive = recursive; in gather_nvlist()
2340 boolean_t needagain, progress, recursive; in recv_incremental_replication() local
2345 recursive = (nvlist_lookup_boolean(stream_nv, "not_recursive") == in recv_incremental_replication()
2355 recursive, &local_nv, &local_avl)) != 0) in recv_incremental_replication()
2627 boolean_t recursive; in zfs_receive_package() local
2649 recursive = (nvlist_lookup_boolean(stream_nv, "not_recursive") == in zfs_receive_package()
2652 if (recursive && strchr(destname, '@')) { in zfs_receive_package()
[all …]
H A Dlibzfs_dataset.c3733 zfs_snapshot(libzfs_handle_t *hdl, const char *path, boolean_t recursive, in zfs_snapshot() argument
3760 if (recursive) { in zfs_snapshot()
3908 zfs_rename(zfs_handle_t *zhp, const char *target, boolean_t recursive, in zfs_rename() argument
3964 if (recursive) { in zfs_rename()
4005 if (recursive) { in zfs_rename()
4043 zc.zc_cookie = recursive; in zfs_rename()
4053 if (recursive && errno == EEXIST) { in zfs_rename()
4391 boolean_t recursive; member
4408 if (ha->recursive) in zfs_hold_one()
4416 boolean_t recursive, int cleanup_fd) in zfs_hold() argument
[all …]
/titanic_41/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_41/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_41/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_41/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,
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()
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_41/usr/src/cmd/sgs/gprof/common/
H A Dgprof.callg.blurb22 than recursive calls).
/titanic_41/usr/src/cmd/zfs/
H A Dzfs_main.c4676 boolean_t recursive; /* unallow only */ member
4782 int all_sum = un ? ldcsuge_sum + opts->recursive : ldcsuge_sum; in parse_allow_args()
5283 opts.recursive = B_TRUE; in zfs_do_allow_unallow_impl()
5330 if (un && opts.recursive) { in zfs_do_allow_unallow_impl()
5370 boolean_t recursive = B_FALSE; in zfs_do_hold_rele_impl() local
5378 recursive = B_TRUE; in zfs_do_hold_rele_impl()
5427 if (zfs_hold(zhp, delim+1, tag, recursive, -1) != 0) in zfs_do_hold_rele_impl()
5430 if (zfs_release(zhp, delim+1, tag, recursive) != 0) in zfs_do_hold_rele_impl()
5575 boolean_t recursive = B_FALSE; in zfs_do_holds() local
5590 recursive = B_TRUE; in zfs_do_holds()
[all …]
/titanic_41/usr/src/uts/common/fs/zfs/sys/
H A Ddsl_dataset.h269 const char *oldsnapname, const char *newsnapname, boolean_t recursive);
/titanic_41/usr/src/cmd/fs.d/ufs/fsdb/
H A Dfsdb.c251 static short recursive; variable
1546 recursive = long_list = 0; in main()
1552 recursive = 1; in main()
1578 recursive = 0; in main()
2594 (!recursive && !doing_find && level > input_pathp)) in follow_path()
2605 if ((recursive || doing_find) && (level > input_pathp) && in follow_path()
2621 (!recursive || (recursive && level <= input_pathp))) { in follow_path()
/titanic_41/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c1383 do_print_vdev(uintptr_t addr, int flags, int depth, boolean_t recursive, in do_print_vdev() argument
1552 if (children == 0 || !recursive) in do_print_vdev()
1563 if (do_print_vdev(child[c], flags, depth + 2, recursive, in do_print_vdev()
1576 boolean_t recursive = B_FALSE; in vdev_print() local
1584 'r', MDB_OPT_SETBITS, TRUE, &recursive, in vdev_print()
1593 return (do_print_vdev(addr, flags, (int)depth, recursive, spa_flags)); in vdev_print()

123