Home
last modified time | relevance | path

Searched refs:ot (Results 1 – 25 of 31) sorted by relevance

12

/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Ddmu.h125 #define DMU_OT_IS_VALID(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument
127 (ot) < DMU_OT_NUMTYPES)
133 #define DMU_OT_IS_METADATA_IMPL(ot) (dmu_ot[ot].ot_metadata) argument
134 #define DMU_OT_IS_ENCRYPTED_IMPL(ot) (dmu_ot[ot].ot_encrypt) argument
135 #define DMU_OT_BYTESWAP_IMPL(ot) (dmu_ot[ot].ot_byteswap) argument
138 #define DMU_OT_IS_METADATA(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument
150 ((ot) == DMU_OT_PLAIN_FILE_CONTENTS || (ot) == DMU_OT_UINT64_OTHER)
152 #define DMU_OT_IS_METADATA_CACHED(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument
155 #define DMU_OT_IS_ENCRYPTED(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument
165 ((ot) == DMU_OT_DNODE || (ot) == DMU_OT_OBJSET)
[all …]
H A Dzap.h122 uint64_t zap_create(objset_t *ds, dmu_object_type_t ot,
124 uint64_t zap_create_dnsize(objset_t *ds, dmu_object_type_t ot,
126 uint64_t zap_create_norm(objset_t *ds, int normflags, dmu_object_type_t ot,
129 dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen,
132 dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift,
135 zap_flags_t flags, dmu_object_type_t ot, int leaf_blockshift,
138 uint64_t zap_create_link(objset_t *os, dmu_object_type_t ot,
140 uint64_t zap_create_link_dnsize(objset_t *os, dmu_object_type_t ot,
153 int zap_create_claim(objset_t *ds, uint64_t obj, dmu_object_type_t ot,
158 int normflags, dmu_object_type_t ot,
[all …]
H A Darc.h204 dmu_object_type_t ot, const uint8_t *salt, const uint8_t *iv,
212 const uint8_t *mac, dmu_object_type_t ot, uint64_t psize, uint64_t lsize,
219 dmu_object_type_t ot, uint64_t psize, uint64_t lsize,
H A Dzio_crypt.h140 dmu_object_type_t ot, boolean_t byteswap, uint8_t *salt, uint8_t *iv,
144 dmu_object_type_t ot, boolean_t byteswap, uint8_t *salt, uint8_t *iv,
H A Ddnode.h401 void dnode_allocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, int ibs,
403 void dnode_reallocate(dnode_t *dn, dmu_object_type_t ot, int blocksize,
H A Ddsl_crypt.h228 dmu_object_type_t ot, boolean_t dedup, boolean_t bswap, uint8_t *salt,
/illumos-gate/usr/src/grub/grub-0.97/stage2/zfs-include/
H A Ddmu.h52 #define DMU_OT_IS_VALID(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument
53 ((ot) & DMU_OT_BYTESWAP_MASK) < DMU_BSWAP_NUMFUNCS : \
54 (ot) < DMU_OT_NUMTYPES)
56 #define DMU_OT_IS_METADATA(ot) (((ot) & DMU_OT_NEWTYPE) ? \ argument
57 ((ot) & DMU_OT_METADATA) : \
58 dmu_ot[(ot)].ot_metadata)
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddmu_object.c46 dmu_object_alloc_impl(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc_impl() argument
176 dnode_allocate(dn, ot, blocksize, 0, in dmu_object_alloc_impl()
201 dmu_object_alloc(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc() argument
204 return (dmu_object_alloc_impl(os, ot, blocksize, 0, bonustype, in dmu_object_alloc()
209 dmu_object_alloc_ibs(objset_t *os, dmu_object_type_t ot, int blocksize, in dmu_object_alloc_ibs() argument
213 return (dmu_object_alloc_impl(os, ot, blocksize, indirect_blockshift, in dmu_object_alloc_ibs()
221 return (dmu_object_alloc_impl(os, ot, blocksize, 0, bonustype, in dmu_object_alloc_dnsize()
226 dmu_object_claim(objset_t *os, uint64_t object, dmu_object_type_t ot, in dmu_object_claim() argument
229 return (dmu_object_claim_dnsize(os, object, ot, blocksize, bonustype, in dmu_object_claim()
263 dmu_object_reclaim(objset_t *os, uint64_t object, dmu_object_type_t ot, in dmu_object_reclaim() argument
[all …]
H A Dzap_micro.c689 zap_create_claim(objset_t *os, uint64_t obj, dmu_object_type_t ot, in zap_create_claim() argument
692 return (zap_create_claim_dnsize(os, obj, ot, bonustype, bonuslen, in zap_create_claim()
701 0, ot, bonustype, bonuslen, dnodesize, tx)); in zap_create_claim_dnsize()
706 dmu_object_type_t ot, in zap_create_claim_norm() argument
729 zap_create(objset_t *os, dmu_object_type_t ot, in zap_create() argument
732 return (zap_create_norm(os, 0, ot, bonustype, bonuslen, tx)); in zap_create()
736 zap_create_dnsize(objset_t *os, dmu_object_type_t ot, in zap_create_dnsize() argument
739 return (zap_create_norm_dnsize(os, 0, ot, bonustype, bonuslen, in zap_create_dnsize()
747 ASSERT3U(DMU_OT_BYTESWAP(ot), ==, DMU_BSWAP_ZAP); in zap_create_norm()
768 ASSERT3U(DMU_OT_BYTESWAP(ot), ==, DMU_BSWAP_ZAP); in zap_create_flags()
[all …]
H A Dzio_crypt.c1821 zio_crypt_init_uios(boolean_t encrypt, uint64_t version, dmu_object_type_t ot, in zio_crypt_init_uios() argument
1829 ASSERT(DMU_OT_IS_ENCRYPTED(ot) || ot == DMU_OT_NONE); in zio_crypt_init_uios()
1832 switch (ot) { in zio_crypt_init_uios()
1874 dmu_object_type_t ot, boolean_t byteswap, uint8_t *salt, uint8_t *iv, in zio_do_crypt_data() argument
1893 ret = zio_crypt_init_uios(encrypt, key->zk_version, ot, plainbuf, in zio_do_crypt_data()
1973 zio_do_crypt_abd(boolean_t encrypt, zio_crypt_key_t *key, dmu_object_type_t ot, in zio_do_crypt_abd() argument
1988 ret = zio_do_crypt_data(encrypt, key, ot, byteswap, salt, iv, mac, in zio_do_crypt_abd()
H A Dzio.c431 if (ot == DMU_OT_OBJSET) { in zio_decrypt()
453 if (ot == DMU_OT_INTENT_LOG) { in zio_decrypt()
3808 if (ot != DMU_OT_OBJSET) in zio_encrypt()
3813 ot == DMU_OT_DNODE) { in zio_encrypt()
3826 if (DMU_OT_IS_ENCRYPTED(ot)) in zio_encrypt()
3845 if (ot == DMU_OT_OBJSET) { in zio_encrypt()
3846 ASSERT0(DMU_OT_IS_ENCRYPTED(ot)); in zio_encrypt()
3855 if (!DMU_OT_IS_ENCRYPTED(ot)) { in zio_encrypt()
3885 if (ot == DMU_OT_INTENT_LOG) { in zio_encrypt()
3897 if (ot == DMU_OT_INTENT_LOG) { in zio_encrypt()
[all …]
H A Dzap.c978 zap_create_link(objset_t *os, dmu_object_type_t ot, uint64_t parent_obj, in zap_create_link() argument
981 return (zap_create_link_dnsize(os, ot, parent_obj, name, 0, tx)); in zap_create_link()
985 zap_create_link_dnsize(objset_t *os, dmu_object_type_t ot, uint64_t parent_obj, in zap_create_link_dnsize() argument
990 VERIFY((new_obj = zap_create_dnsize(os, ot, DMU_OT_NONE, 0, in zap_create_link_dnsize()
H A Ddnode.c569 dnode_allocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, int ibs, in dnode_allocate() argument
597 ASSERT(ot != DMU_OT_NONE); in dnode_allocate()
598 ASSERT(DMU_OT_IS_VALID(ot)); in dnode_allocate()
627 dn->dn_type = ot; in dnode_allocate()
663 dnode_reallocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, in dnode_reallocate() argument
721 dn->dn_type = ot; in dnode_reallocate()
H A Ddsl_crypt.c2795 dmu_object_type_t ot, boolean_t dedup, boolean_t bswap, uint8_t *salt, in spa_do_crypt_abd() argument
2829 if (encrypt && ot != DMU_OT_INTENT_LOG && !dedup) { in spa_do_crypt_abd()
2845 ret = zio_do_crypt_data(encrypt, &dck->dck_key, ot, bswap, salt, iv, in spa_do_crypt_abd()
2854 if (zio_injection_enabled && !encrypt && ot != DMU_OT_DNODE && ret == 0) in spa_do_crypt_abd()
2855 ret = zio_handle_decrypt_injection(spa, zb, ot, ECKSUM); in spa_do_crypt_abd()
/illumos-gate/usr/src/uts/common/io/cxgbe/common/
H A Dt4_msg.h609 union opcode_tid ot; member
620 union opcode_tid ot; member
633 union opcode_tid ot; member
640 union opcode_tid ot; member
688 union opcode_tid ot; member
749 union opcode_tid ot; member
756 union opcode_tid ot; member
768 union opcode_tid ot; member
785 union opcode_tid ot; member
798 union opcode_tid ot; member
[all …]
/illumos-gate/usr/src/lib/libbsm/
H A Daudit_event.txt282 238:AUE_MEMCNTL:memcntl(2):ot
342 294:AUE_BRANDSYS:brandsys(2):ot
446 6220:AUE_smserverd:smserverd:ot
456 6230:AUE_attach:attach device:ot
457 6231:AUE_detach:detach device:ot
458 6232:AUE_remove:remove/eject device:ot
459 6233:AUE_pool_import:import device into pool:ot
591 9137:AUE_GrabServer:XGrabServer(3X11):ot
592 9138:AUE_UngrabServer:XUngrabServer(3X11):ot
593 9146:AUE_SetFontPath:XSetFontPath(3X11):ot
[all …]
H A Daudit_class.txt70 0x80000000:ot:other
/illumos-gate/usr/src/cmd/sh/
H A Dmacro.c574 subst(int in, int ot) in subst() argument
613 flush(ot); in subst()
617 flush(ot); in subst()
622 flush(int ot) in flush() argument
624 write(ot, stakbot, staktop - stakbot); in flush()
/illumos-gate/usr/src/cmd/fm/eversholt/files/common/
H A Dstorage.esc85 event ereport.chassis.device.psu.ot@psu;
109 event ereport.chassis.sensor.temp.ot@controller;
110 event ereport.chassis.sensor.temp.ot@fanmodule;
111 event ereport.chassis.sensor.temp.ot@psu;
221 ereport.chassis.sensor.temp.ot@controller,
225 ereport.chassis.sensor.temp.ot@fanmodule,
229 ereport.chassis.sensor.temp.ot@psu,
264 ereport.chassis.device.psu.ot@psu,
/illumos-gate/usr/src/lib/libexacct/demo/
H A Dexdump.c438 ea_object_type_t ot; in disp_obj() local
442 ot = ea_unpack_object(&op, EUP_ALLOC, in disp_obj()
445 if (ot == EO_ERROR) { in disp_obj()
451 if (ot == EO_GROUP) { in disp_obj()
/illumos-gate/usr/src/uts/intel/io/intel_nhm/
H A Dmem_addr.c334 int ot = 0; in socket_interleave() local
352 ot++; in socket_interleave()
359 if (ot) { in socket_interleave()
374 ot++; in socket_interleave()
385 if (ot) { in socket_interleave()
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_put.c1169 ttymode ot; local
1170 ot = tty;
1180 return (ot);
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dikeadm.c513 struct objtbl *ot; in parsecmd() local
521 ot = ct->objt; in parsecmd()
525 return (ot->token); in parsecmd()
532 while (ot->obj != NULL && strcmp(ot->obj, objstr) != 0) in parsecmd()
533 ot++; in parsecmd()
535 if (ot->obj == NULL) in parsecmd()
538 return (ot->token); in parsecmd()
/illumos-gate/usr/src/test/libc-tests/tests/regex/
H A Dtestregex.c1164 expand(char* os, char* ot) in expand() argument
1188 for (t = ot; os < s; *t++ = *os++); in expand()
1189 r = ((t - ot) >= 5 && t[-1] == '{' && t[-2] == '.' && t[-3] == '.' && t[-4] == '.') ? t[-5] : 0; in expand()
1190 os = ot; in expand()
/illumos-gate/usr/src/uts/common/io/chxge/
H A Dsge.h512 union opcode_tid ot; member

12