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

/opensolaris-onvv-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.c647 zfs_type_t typemask = local
648 ((zjni_DatasetArrayCallbackData_t *)data)->typemask;
651 if (zfs_get_type(zhp) & typemask) {
698 data.typemask = child_typemask;
748 data.typemask = ZFS_TYPE_DATASET;
804 zjni_get_Dataset(JNIEnv *env, jstring nameUTF, zfs_type_t typemask) argument
808 zfs_handle_t *zhp = zfs_open(g_zfs, name, typemask);
810 if ((typemask & ZFS_TYPE_FILESYSTEM) && is_pool_name(name)) {
/opensolaris-onvv-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...]
/opensolaris-onvv-gate/usr/src/lib/libumem/common/
H A Dvmem.c1356 * Walk the vmp arena, applying func to each segment matching typemask.
1364 vmem_walk(vmem_t *vmp, int typemask, argument
1371 if (typemask & VMEM_WALKER)
1380 if (vsp->vs_type & typemask) {
1383 if (typemask & VMEM_REENTRANT) {
1399 * Return the total amount of memory whose type matches typemask. Thus:
1401 * typemask VMEM_ALLOC yields total memory allocated (in use).
1402 * typemask VMEM_FREE yields total memory free (available).
1403 * typemask (VMEM_ALLOC | VMEM_FREE) yields total arena size.
1406 vmem_size(vmem_t *vmp, int typemask) argument
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/os/
H A Dvmem.c1354 * Walk the vmp arena, applying func to each segment matching typemask.
1362 vmem_walk(vmem_t *vmp, int typemask, argument
1369 if (typemask & VMEM_WALKER)
1378 if (vsp->vs_type & typemask) {
1381 if (typemask & VMEM_REENTRANT) {
1397 * Return the total amount of memory whose type matches typemask. Thus:
1399 * typemask VMEM_ALLOC yields total memory allocated (in use).
1400 * typemask VMEM_FREE yields total memory free (available).
1401 * typemask (VMEM_ALLOC | VMEM_FREE) yields total arena size.
1404 vmem_size(vmem_t *vmp, int typemask) argument
[all...]

Completed in 110 milliseconds