HomeSort by: relevance | last modified time | path
    Searched refs:holds (Results 1 - 25 of 64) sorted by relevancy

1 2 3

  /src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
dsl_userhold.h 43 int dsl_dataset_user_hold(nvlist_t *holds, minor_t cleanup_minor,
45 int dsl_dataset_user_release(nvlist_t *holds, nvlist_t *errlist);
47 void dsl_dataset_user_release_tmp(struct dsl_pool *dp, nvlist_t *holds);
  /src/common/lib/libc/arch/m68k/gen/
mulsi3.S 54 muluw 8(%sp), %d0 | %d0 holds B * C
57 muluw 4(%sp), %d1 | %d1 holds A * D
58 addw %d1, %d0 | %d0 holds (B * C) + (A * D)
60 clrw %d0 | %d0 holds ((B * C) + (A * D)) << 16
63 muluw %d1, %d0 | %d0 holds B * D
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dsl_userhold.c 121 * reported if needed, such as when all holds fail.
197 zfs_dbgmsg("couldn't release holds on pool=%s "
203 zfs_dbgmsg("couldn't release holds on pool=%s "
217 dsl_onexit_hold_cleanup(spa_t *spa, nvlist_t *holds, minor_t minor)
221 if (minor == 0 || nvlist_empty(holds)) {
222 fnvlist_free(holds);
232 ca->zhca_holds = holds;
281 * holds is nvl of snapname -> holdname
286 * Holds for snapshots that don't exist will be skipped.
288 * If none of the snapshots for requested holds exist then ENOENT will b
442 nvlist_t *holds; local
    [all...]
dsl_pool.c 669 * dsl_dir_destroy_check() will fail if there are unexpected holds.
957 * Walk through the pool-wide zap object of temporary snapshot user holds
967 nvlist_t *holds; local
973 holds = fnvlist_alloc();
984 if (nvlist_lookup_nvlist(holds, za.za_name, &tags) != 0) {
987 fnvlist_add_nvlist(holds, za.za_name, tags);
993 dsl_dataset_user_release_tmp(dp, holds);
994 fnvlist_free(holds);
999 * Create the pool-wide zap object for storing temporary snapshot holds.
1027 * zap object for temporary holds might not exist yet
    [all...]
dbuf.c 315 int64_t holds; local
327 holds = refcount_count(&db->db_holds);
330 * Immediate eviction occurs when holds == dirtycnt.
331 * For normal eviction buffers, holds is zero on
336 * test the generic invariant that holds >= dirtycnt.
338 ASSERT3U(holds, >=, db->db_dirtycnt);
341 ASSERT3U(holds, >=, db->db_dirtycnt);
343 ASSERT3U(holds, >, 0);
2672 int64_t holds = refcount_add(&db->db_holds, tag); local
2673 ASSERT3S(holds, >, 1)
2727 int64_t holds; local
    [all...]
zfs_ioctl.c 1287 nvlist_t *holds; local
1290 error = nvlist_lookup_nvlist(innvl, "holds", &holds);
1294 for (pair = nvlist_next_nvpair(holds, NULL); pair != NULL;
1295 pair = nvlist_next_nvpair(holds, pair)) {
5465 * "holds" -> { snapname -> holdname (string), ... }
5479 nvlist_t *holds; local
5484 error = nvlist_lookup_nvlist(args, "holds", &holds);
5489 for (pair = nvlist_next_nvpair(holds, NULL); pair != NULL
    [all...]
  /src/external/cddl/osnet/dist/lib/pyzfs/common/
holds.py 25 """This module implements the "zfs holds" subcommand.
26 The only public interface is the zfs.holds.do_holds() function."""
39 """Implements the "zfs holds" subcommand."""
48 u = _("""holds [-r] <snapshot> ...""")
53 help=_("list holds recursively"))
  /src/sys/arch/vax/boot/boot/
consio2.S 46 movl %r1, %r0 # R1 holds char
69 movl %r1,%r0 # R1 holds char
88 movl 4(%ap),%r1 # R1 holds char
120 movl 4(%ap),%r1 # R1 holds char
  /src/sys/arch/vax/boot/common/
romread.S 68 ret # %r0 holds the result
84 ret # %r0 holds the result
  /src/external/cddl/osnet/dist/lib/libzfs_core/common/
libzfs_core.c 298 * If 'defer' is not set, and a snapshot has user holds or clones, the
302 * If 'defer' is set, and a snapshot has user holds or clones, it will be
383 * Create "user holds" on snapshots. If there is a hold on a snapshot,
393 * termination), the holds will be released. If the system is shut down
394 * uncleanly, the holds will be released when the pool is next opened
397 * Holds for snapshots which don't exist will be skipped and have an entry
400 * The return value will be 0 if all holds, for snapshots that existed,
404 * failed and no holds will be created.
410 lzc_hold(nvlist_t *holds, int cleanup_fd, nvlist_t **errlist)
418 elem = nvlist_next_nvpair(holds, NULL)
    [all...]
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
dibuilder.go 111 // DICompileUnit holds the values for creating compile unit debug metadata.
169 // DILexicalBlock holds the values for creating lexical block debug metadata.
194 // DIFunction holds the values for creating function debug metadata.
231 // DIAutoVariable holds the values for creating auto variable debug metadata.
260 // DIParameterVariable holds the values for creating parameter variable debug metadata.
292 // DIBasicType holds the values for creating basic type debug metadata.
314 // DIPointerType holds the values for creating pointer type debug metadata.
339 // DISubroutineType holds the values for creating subroutine type debug metadata.
364 // DIStructType holds the values for creating struct type debug metadata.
406 // DIReplaceableCompositeType holds the values for creating replaceabl
    [all...]
  /src/sys/arch/m68k/060sp/dist/
fskeletn.s 82 # stack frame. The FP state frame holds the EXCEPTIONAL OPERAND.
100 # stack frame. The FP state frame holds the EXCEPTIONAL OPERAND.
118 # stack frame. The FP state frame holds the source operand of the faulting
137 # stack frame. The FP state frame holds the source operand of the faulting
156 # stack frame. The FP state frame holds the source operand of the faulting
175 # stack frame. The FP state frame holds the source operand of the faulting
fplsp.doc 99 Upon return, fp0 holds the correct result. The FPSR is
  /src/external/gpl3/gcc/dist/libsanitizer/
merge.sh 86 The first line of this file holds the git revision number of the
  /src/external/gpl3/gcc.old/dist/libsanitizer/
merge.sh 86 The first line of this file holds the git revision number of the
  /src/external/gpl3/gcc/dist/libgcc/config/ft32/
crti-hw.S 149 # On entry: r0, already saved, holds the handler function
  /src/external/gpl3/gcc.old/dist/libgcc/config/ft32/
crti-hw.S 149 # On entry: r0, already saved, holds the handler function
  /src/external/lgpl3/gmp/dist/mpn/x86_64/k8/
div_qr_1n_pi1.asm 154 C in 10 cycles. At entry, %rax holds an extra copy of U1, Q1
155 C is zero, and carry holds an extra copy of U2.
  /src/crypto/external/apache2/openssl/dist/crypto/sha/asm/
sha1-thumb.pl 143 ldrb $a,[$t1,#0] @ $t1 is r1 and holds inp
175 ldmia $t0!,{$a,$b,$c,$d,$e} @ $t0 is r0 and holds ctx
  /src/crypto/external/bsd/openssl/dist/crypto/sha/asm/
sha1-thumb.pl 143 ldrb $a,[$t1,#0] @ $t1 is r1 and holds inp
175 ldmia $t0!,{$a,$b,$c,$d,$e} @ $t0 is r0 and holds ctx
  /src/crypto/external/bsd/openssl.old/dist/crypto/sha/asm/
sha1-thumb.pl 144 ldrb $a,[$t1,#0] @ $t1 is r1 and holds inp
176 ldmia $t0!,{$a,$b,$c,$d,$e} @ $t0 is r0 and holds ctx
  /src/sys/arch/mips/mips/
lock_stubs_ras.S 403 move a0, t0 # a0 still holds the splraise cookie
  /src/external/lgpl3/gmp/dist/mpn/x86/p6/
aorsmul_1.asm 179 C VAR_JUMP holds the computed jump temporarily because there's not enough
  /src/external/lgpl3/gmp/dist/mpn/x86_64/
div_qr_1n_pi1.asm 153 C At entry, %rax holds an extra copy of U1
  /src/sys/dev/pci/voyager/
vac8051.asm 235 mov r7, a ; a still holds r6

Completed in 86 milliseconds

1 2 3