Searched refs:objectp (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | dmu_object.c | 390 dmu_object_next(objset_t *os, uint64_t *objectp, boolean_t hole, uint64_t txg) in dmu_object_next() argument 397 if (*objectp == 0) { in dmu_object_next() 401 uint64_t i = *objectp + 1; in dmu_object_next() 402 uint64_t last_obj = *objectp | (DNODES_PER_BLOCK - 1); in dmu_object_next() 415 *objectp = i; in dmu_object_next() 426 *objectp = i; in dmu_object_next() 436 start_obj = *objectp + 1; in dmu_object_next() 444 *objectp = offset >> DNODE_SHIFT; in dmu_object_next()
|
| H A D | ddt_zap.c | 38 ddt_zap_create(objset_t *os, uint64_t *objectp, dmu_tx_t *tx, boolean_t prehash) in ddt_zap_create() argument 45 *objectp = zap_create_flags(os, 0, flags, DMU_OT_DDT_ZAP, in ddt_zap_create() 49 return (*objectp == 0 ? SET_ERROR(ENOTSUP) : 0); in ddt_zap_create()
|
| H A D | ddt.c | 65 uint64_t *objectp = &ddt->ddt_object[type][class]; in ddt_object_create() local 72 ASSERT(*objectp == 0); in ddt_object_create() 73 VERIFY(ddt_ops[type]->ddt_op_create(os, objectp, tx, prehash) == 0); in ddt_object_create() 74 ASSERT(*objectp != 0); in ddt_object_create() 77 sizeof (uint64_t), 1, objectp, tx) == 0); in ddt_object_create() 90 uint64_t *objectp = &ddt->ddt_object[type][class]; in ddt_object_destroy() local 96 ASSERT(*objectp != 0); in ddt_object_destroy() 101 VERIFY(ddt_ops[type]->ddt_op_destroy(os, *objectp, tx) == 0); in ddt_object_destroy() 104 *objectp = 0; in ddt_object_destroy()
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | dmu.h | 456 int dmu_object_next(objset_t *os, uint64_t *objectp,
|