Searched defs:typemask (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_dataset.h45 zfs_type_t typemask; member in struct:zjni_DatasetArrayCallbackData
H A Dlibzfs_jni_dataset.c649 zfs_type_t typemask = local
650 ((zjni_DatasetArrayCallbackData_t *)data)->typemask;
653 if (zfs_get_type(zhp) & typemask) {
700 data.typemask = child_typemask;
750 data.typemask = ZFS_TYPE_DATASET;
806 zjni_get_Dataset(JNIEnv *env, jstring nameUTF, zfs_type_t typemask) argument
810 zfs_handle_t *zhp = zfs_open(g_zfs, name, typemask);
812 if ((typemask & ZFS_TYPE_FILESYSTEM) && is_pool_name(name)) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dauth.c88 #define typemask(x) ((x) > 0 ? 1 << ((x)-1) : 0) macro
168 i_support |= typemask(ap->type);
188 i_wont_support |= typemask(x);
219 *maskp = typemask(x);
263 if ((mask & (i = typemask(ap->type))) != 0)
321 if ((mask & (i = typemask(ap->type))) != 0)
325 (i_wont_support & typemask(ap->type)) ?
373 if (!(i_support & typemask(*auth_send_data)))
375 if (i_wont_support & typemask(*auth_send_data))
H A Dencrypt.c104 #define typemask(x) ((x) > 0 ? 1 << ((x)-1) : 0) macro
108 static int i_support_encrypt = typemask(TELOPT_ENCTYPE_DES_CFB64);
109 static int i_support_decrypt = typemask(TELOPT_ENCTYPE_DES_CFB64);
143 if (!(I_SUPPORT_ENCRYPT & remote_supports_decrypt & typemask(type)))
154 if (!(I_SUPPORT_DECRYPT & remote_supports_encrypt & typemask(type)))
199 i_support_encrypt |= typemask(ep->type);
200 i_support_decrypt |= typemask(ep->type);
201 if ((i_wont_support_decrypt & typemask(ep->type)) == 0)
260 i_wont_support_decrypt |= typemask(ep->type);
266 i_wont_support_encrypt |= typemask(e
[all...]
/illumos-gate/usr/src/lib/libumem/common/
H A Dvmem.c1358 * Walk the vmp arena, applying func to each segment matching typemask.
1366 vmem_walk(vmem_t *vmp, int typemask, argument
1373 if (typemask & VMEM_WALKER)
1382 if (vsp->vs_type & typemask) {
1385 if (typemask & VMEM_REENTRANT) {
1401 * Return the total amount of memory whose type matches typemask. Thus:
1403 * typemask VMEM_ALLOC yields total memory allocated (in use).
1404 * typemask VMEM_FREE yields total memory free (available).
1405 * typemask (VMEM_ALLOC | VMEM_FREE) yields total arena size.
1408 vmem_size(vmem_t *vmp, int typemask) argument
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dvmem.c1373 * Walk the vmp arena, applying func to each segment matching typemask.
1381 vmem_walk(vmem_t *vmp, int typemask, argument
1388 if (typemask & VMEM_WALKER)
1397 if (vsp->vs_type & typemask) {
1400 if (typemask & VMEM_REENTRANT) {
1416 * Return the total amount of memory whose type matches typemask. Thus:
1418 * typemask VMEM_ALLOC yields total memory allocated (in use).
1419 * typemask VMEM_FREE yields total memory free (available).
1420 * typemask (VMEM_ALLOC | VMEM_FREE) yields total arena size.
1423 vmem_size(vmem_t *vmp, int typemask) argument
[all...]

Completed in 77 milliseconds