Searched refs:lr (Results 1 - 25 of 32) sorted by relevance

12

/illumos-gate/usr/src/cmd/zdb/
H A Dzdb_il.c60 zil_prt_rec_create(zilog_t *zilog, int txtype, lr_create_t *lr) argument
62 time_t crtime = lr->lr_crtime[0];
66 name = (char *)(lr + 1);
68 if (lr->lr_common.lrc_txtype == TX_CREATE_ATTR ||
69 lr->lr_common.lrc_txtype == TX_MKDIR_ATTR) {
70 lrattr = (lr_attr_t *)(lr + 1);
83 (u_longlong_t)lr->lr_doid, (u_longlong_t)lr->lr_foid,
84 (longlong_t)lr->lr_mode);
86 (u_longlong_t)lr
92 zil_prt_rec_remove(zilog_t *zilog, int txtype, lr_remove_t *lr) argument
100 zil_prt_rec_link(zilog_t *zilog, int txtype, lr_link_t *lr) argument
109 zil_prt_rec_rename(zilog_t *zilog, int txtype, lr_rename_t *lr) argument
121 zil_prt_rec_write(zilog_t *zilog, int txtype, lr_write_t *lr) argument
186 zil_prt_rec_truncate(zilog_t *zilog, int txtype, lr_truncate_t *lr) argument
195 zil_prt_rec_setattr(zilog_t *zilog, int txtype, lr_setattr_t *lr) argument
240 zil_prt_rec_acl(zilog_t *zilog, int txtype, lr_acl_t *lr) argument
279 print_log_record(zilog_t *zilog, lr_t *lr, void *arg, uint64_t claim_txg) argument
[all...]
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_mn_changelog.c54 static int mdmn_log_it(set_t, md_error_t *, mdmn_changelog_record_t *lr);
68 dump_rec(char *fn_name, mdmn_changelog_record_t *lr) argument
71 "msglen %d\n", fn_name, lr->lr_selfid, lr->lr_class,
72 lr->lr_flags, lr->lr_msglen);
75 dump_rec_od(char *fn_name, mdmn_changelog_record_od_t *lr) argument
78 "msglen %d\n", fn_name, lr->lr_selfid, lr->lr_class,
79 lr
233 mdmn_changelog_record_t *lr; local
297 mdmn_changelog_record_t *lr; local
374 mdmn_changelog_record_t *lr = NULL; local
453 mdmn_changelog_record_t *lr; local
530 mdmn_log_it(set_t set, md_error_t *ep, mdmn_changelog_record_t *lr) argument
594 mdmn_changelog_record_od_t *lr; local
[all...]
H A Dmeta_set.c5721 mdmn_changelog_record_t *lr; local
5726 lr = mdmn_get_changelogrec(sp->setno, class);
5727 if ((lr->lr_flags & MD_MN_LR_INUSE) == 0) {
5734 MSGID_ELEMS(lr->lr_msg.msg_msgid));
5737 lr->lr_msg.msg_setno,
5738 lr->lr_msg.msg_type,
5739 lr->lr_msg.msg_flags | MD_MSGF_REPLAY_MSG |
5741 lr->lr_msg.msg_recipient,
5742 lr->lr_msg.msg_event_data,
5743 lr
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dabandon.c115 LDAPRequest *lr = NULL; local
140 for ( lr = ld->ld_requests; lr != NULL; lr = lr->lr_next ) {
141 if ( lr->lr_msgid == msgid ) { /* this message */
142 if ( origid == msgid && lr->lr_parent != NULL ) {
147 if ( lr->lr_status == LDAP_REQST_INPROGRESS ) {
155 if ( lr->lr_origid == msgid ) { /* child: abandon it */
156 (void)do_abandon( ld, msgid, lr
[all...]
H A Drequest.c48 static int chase_one_referral( LDAP *ld, LDAPRequest *lr, LDAPRequest *origreq,
158 LDAPRequest *lr; local
235 if (( lr = (LDAPRequest *)NSLDAPI_CALLOC( 1, sizeof( LDAPRequest ))) ==
238 if ( lr != NULL ) {
239 NSLDAPI_FREE( lr );
251 lr->lr_binddn = bindreqdn;
252 lr->lr_msgid = msgid;
253 lr->lr_status = LDAP_REQST_INPROGRESS;
254 lr->lr_res_errno = LDAP_SUCCESS; /* optimistic */
255 lr
682 LDAPRequest *lr; local
735 nsldapi_free_request( LDAP *ld, LDAPRequest *lr, int free_conn ) argument
816 nsldapi_chase_v2_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp, int *totalcountp, int *chasingcountp ) argument
893 nsldapi_chase_v3_refs( LDAP *ld, LDAPRequest *lr, char **v3refs, int is_reference, int *totalcountp, int *chasingcountp ) argument
948 chase_one_referral( LDAP *ld, LDAPRequest *lr, LDAPRequest *origreq, char *refurl, char *desc, int *unknownp ) argument
1225 LDAPRequest *lr; local
1246 LDAPRequest *lr; local
[all...]
H A Dresult.c54 static void check_for_refs( LDAP *ld, LDAPRequest *lr, BerElement *ber,
56 static int build_result_ber( LDAP *ld, BerElement **berp, LDAPRequest *lr );
57 static void merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr );
166 LDAPRequest *lr; local
223 || (( lr = nsldapi_find_request_by_msgid( ld, lm->lm_msgid ))
224 != NULL && lr->lr_outrefcnt > 0 )) {
282 LDAPRequest *lr; local
316 if (( lr = nsldapi_find_request_by_msgid( ld, msgid ))
324 if ( lr->lr_conn != NULL &&
325 lr
502 LDAPRequest *lr; local
897 check_for_refs( LDAP *ld, LDAPRequest *lr, BerElement *ber, int ldapversion, int *totalcountp, int *chasingcountp ) argument
[all...]
H A Dunbind.c83 LDAPRequest *lr, *nextlr; local
92 for ( lr = ld->ld_requests; lr != NULL; lr = nextlr ) {
93 nextlr = lr->lr_next;
94 nsldapi_free_request( ld, lr, 0 );
H A Dldap-int.h731 void nsldapi_free_request( LDAP *ld, LDAPRequest *lr, int free_conn );
737 int nsldapi_chase_v2_referrals( LDAP *ld, LDAPRequest *lr, char **errstrp,
739 int nsldapi_chase_v3_refs( LDAP *ld, LDAPRequest *lr, char **refs,
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_log.c240 lr_create_t *lr; local
269 txsize = sizeof (*lr) + namesize + fuidsz + xvatsize;
270 lrsize = sizeof (*lr);
280 lr = (lr_create_t *)&itx->itx_lr;
281 lr->lr_doid = dzp->z_id;
282 lr->lr_foid = zp->z_id;
283 lr->lr_mode = zp->z_mode;
285 lr->lr_uid = (uint64_t)zp->z_uid;
287 lr->lr_uid = fuidp->z_fuid_owner;
290 lr
351 lr_remove_t *lr; local
375 lr_link_t *lr; local
398 lr_create_t *lr; local
430 lr_rename_t *lr; local
483 lr_write_t *lr; local
535 lr_truncate_t *lr; local
558 lr_setattr_t *lr; local
621 lr_acl_t *lr; local
[all...]
H A Dzfs_replay.c72 zfs_replay_error(zfsvfs_t *zfsvfs, lr_t *lr, boolean_t byteswap) argument
269 lr_create_t *lr = (lr_create_t *)lracl; local
282 txtype = (lr->lr_common.lrc_txtype & ~TX_CI);
302 if ((error = zfs_zget(zfsvfs, lr->lr_doid, &dzp)) != 0)
307 lr->lr_mode, lr->lr_uid, lr->lr_gid, lr->lr_rdev, lr->lr_foid);
316 ZFS_TIME_DECODE(&xva.xva_vattr.va_ctime, lr
406 zfs_replay_create(zfsvfs_t *zfsvfs, lr_create_t *lr, boolean_t byteswap) argument
531 zfs_replay_remove(zfsvfs_t *zfsvfs, lr_remove_t *lr, boolean_t byteswap) argument
564 zfs_replay_link(zfsvfs_t *zfsvfs, lr_link_t *lr, boolean_t byteswap) argument
594 zfs_replay_rename(zfsvfs_t *zfsvfs, lr_rename_t *lr, boolean_t byteswap) argument
626 zfs_replay_write(zfsvfs_t *zfsvfs, lr_write_t *lr, boolean_t byteswap) argument
692 zfs_replay_write2(zfsvfs_t *zfsvfs, lr_write_t *lr, boolean_t byteswap) argument
737 zfs_replay_truncate(zfsvfs_t *zfsvfs, lr_truncate_t *lr, boolean_t byteswap) argument
764 zfs_replay_setattr(zfsvfs_t *zfsvfs, lr_setattr_t *lr, boolean_t byteswap) argument
816 zfs_replay_acl_v0(zfsvfs_t *zfsvfs, lr_acl_v0_t *lr, boolean_t byteswap) argument
860 zfs_replay_acl(zfsvfs_t *zfsvfs, lr_acl_t *lr, boolean_t byteswap) argument
[all...]
H A Dzil.c217 char *lr = (char *)(zilc + 1); local
225 bcopy(lr, dst, len);
230 char *lr = abuf->b_data; local
232 zil_chain_t *zilc = (zil_chain_t *)(lr + size) - 1;
241 bcopy(lr, dst, zilc->zc_nused);
257 zil_read_log_data(zilog_t *zilog, const lr_write_t *lr, void *wbuf) argument
260 const blkptr_t *bp = &lr->lr_blkptr;
268 bzero(wbuf, MAX(BP_GET_LSIZE(bp), lr->lr_length));
275 SET_BOOKMARK(&zb, dmu_objset_id(zilog->zl_os), lr->lr_foid,
276 ZB_ZIL_LEVEL, lr
348 lr_t *lr = (lr_t *)lrp; local
395 lr_write_t *lr = (lr_write_t *)lrc; local
427 lr_write_t *lr = (lr_write_t *)lrc; local
2011 zil_replay_error(zilog_t *zilog, lr_t *lr, int error) argument
2029 zil_replay_log_record(zilog_t *zilog, lr_t *lr, void *zra, uint64_t claim_txg) argument
[all...]
H A Dzvol.c160 static int zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio);
375 zvol_replay_truncate(zvol_state_t *zv, lr_truncate_t *lr, boolean_t byteswap) argument
380 byteswap_uint64_array(lr, sizeof (*lr));
382 offset = lr->lr_offset;
383 length = lr->lr_length;
393 zvol_replay_write(zvol_state_t *zv, lr_write_t *lr, boolean_t byteswap) argument
396 char *data = (char *)(lr + 1); /* data follows lr_write_t */
402 byteswap_uint64_array(lr, sizeof (*lr));
431 zvol_replay_err(zvol_state_t *zv, lr_t *lr, boolean_t byteswap) argument
987 zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio) argument
1075 lr_write_t *lr; local
1621 lr_truncate_t *lr; local
[all...]
H A Ddmu_traverse.c100 lr_write_t *lr = (lr_write_t *)lrc; local
101 blkptr_t *bp = &lr->lr_blkptr;
110 SET_BOOKMARK(&zb, td->td_objset, lr->lr_foid,
111 ZB_ZIL_LEVEL, lr->lr_offset / BP_GET_LSIZE(bp));
H A Ddsl_scan.c510 lr_write_t *lr = (lr_write_t *)lrc; local
511 blkptr_t *bp = &lr->lr_blkptr;
527 lr->lr_foid, ZB_ZIL_LEVEL,
528 lr->lr_offset / BP_GET_LSIZE(bp));
H A Dzfs_vnops.c1045 zfs_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio) argument
1050 uint64_t object = lr->lr_foid;
1051 uint64_t offset = lr->lr_offset;
1052 uint64_t size = lr->lr_length;
1053 blkptr_t *bp = &lr->lr_blkptr;
1117 if (lr->lr_offset >= zp->z_size)
1142 error = dmu_sync(zio, lr->lr_common.lrc_txg,
1144 ASSERT(error || lr->lr_length <= zp->z_blksz);
1156 lr->lr_common.lrc_txtype = TX_WRITE2;
/illumos-gate/usr/src/boot/sys/boot/arm/uboot/
H A Dstart.S91 /* Save caller's lr, r8 and r9 */
95 str lr, [ip, #16]
100 ldr lr, =return_from_syscall
104 /* Restore loader's r8, r9 and lr */
106 ldr lr, [ip, #16]
110 mov pc, lr
130 .long 0 /* Loader's lr */
/illumos-gate/usr/src/cmd/ztest/
H A Dztest.c1319 ztest_log_create(ztest_ds_t *zd, dmu_tx_t *tx, lr_create_t *lr) argument
1321 char *name = (void *)(lr + 1); /* name follows lr */
1328 itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize);
1329 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1330 sizeof (*lr) + namesize - sizeof (lr_t));
1336 ztest_log_remove(ztest_ds_t *zd, dmu_tx_t *tx, lr_remove_t *lr, uint64_t object) argument
1338 char *name = (void *)(lr + 1); /* name follows lr */
1345 itx = zil_itx_create(TX_REMOVE, sizeof (*lr)
1354 ztest_log_write(ztest_ds_t *zd, dmu_tx_t *tx, lr_write_t *lr) argument
1387 ztest_log_truncate(ztest_ds_t *zd, dmu_tx_t *tx, lr_truncate_t *lr) argument
1403 ztest_log_setattr(ztest_ds_t *zd, dmu_tx_t *tx, lr_setattr_t *lr) argument
1422 ztest_replay_create(ztest_ds_t *zd, lr_create_t *lr, boolean_t byteswap) argument
1506 ztest_replay_remove(ztest_ds_t *zd, lr_remove_t *lr, boolean_t byteswap) argument
1557 ztest_replay_write(ztest_ds_t *zd, lr_write_t *lr, boolean_t byteswap) argument
1682 ztest_replay_truncate(ztest_ds_t *zd, lr_truncate_t *lr, boolean_t byteswap) argument
1721 ztest_replay_setattr(ztest_ds_t *zd, lr_setattr_t *lr, boolean_t byteswap) argument
1837 ztest_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio) argument
1926 char *lr; local
1938 ztest_lr_free(void *lr, size_t lrsize, char *name) argument
2003 lr_create_t *lr = ztest_lr_alloc(sizeof (*lr), od->od_name); local
2055 lr_remove_t *lr = ztest_lr_alloc(sizeof (*lr), od->od_name); local
2075 lr_write_t *lr; local
2098 lr_truncate_t *lr; local
2117 lr_setattr_t *lr; local
[all...]
/illumos-gate/usr/src/lib/libnsl/netdir/
H A Dnetdir.c216 char *lr; /* routines to try */ local
221 lr = *((tp->nc_lookups) + i);
223 if (strcmp(lr, t->tr_name) == 0) {
237 if ((t = load_xlate(lr)) != NULL) {
345 char *lr; /* routines to try */ local
350 lr = *((tp->nc_lookups) + i);
352 if (strcmp(lr, t->tr_name) == 0) {
365 if ((t = load_xlate(lr)) != NULL) {
402 char *lr; /* routines to try */ local
418 lr
454 char *lr; /* routines to try */ local
512 char *lr; /* routines to try */ local
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Ddoupdate.c656 cost(fr, lr)
657 int fr, lr;
675 for (cc = 1, ++lr, nr = fr+1; nr <= lr; ++nr, ++cc) {
685 for (--lr, or = fr; or <= lr; ++or) {
686 for (nr = fr; nr <= lr; ++nr) {
721 return LC(lr+1,lr+1).cost;
738 script(fr, lr)
807 int i, j, lr; local
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Ddoupdate.c792 cost(int fr, int lr) argument
812 for (cc = 1, ++lr, nr = fr+1; nr <= lr; ++nr, ++cc) {
822 for (--lr, or = fr; or <= lr; ++or) {
823 for (nr = fr; nr <= lr; ++nr) {
852 return (LC(lr + 1, lr + 1).cost);
869 script(int fr, int lr) argument
874 i = j = lr
938 int i, j, lr; local
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_log.c470 struct lr_alloc lr; local
479 lr.next = lr.prev = &lr;
480 lr.lr_flags = 0;
481 lr.log_record = loghdr;
482 lr.size = loghdr_len;
483 lr.alloc_cache = NULL;
484 lr.exi = NULL;
485 lr
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzil.h66 uint64_t zh_claim_lr_seq; /* highest claimed lr sequence number */
380 typedef int zil_parse_lr_func_t(zilog_t *zilog, lr_t *lr, void *arg,
383 typedef int zil_get_data_t(void *arg, lr_write_t *lr, char *dbuf, zio_t *zio);
/illumos-gate/usr/src/cmd/csh/
H A Dsh.parse.c661 goto lr;
667 lr:
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_mr.c354 mpt_entry.lr = 1;
567 mpt_entry.lr = 1;
1301 mpt_entry.lr = 1;
1699 mpt_entry.lr = 1;
1929 mpt_entry.lr = 1;
2098 mpt_entry.lr = 1;
2188 mpt_entry.lr = 1;
2613 mpt_entry.lr = 1;
/illumos-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_mr.c383 mpt_entry.lr = 1;
1383 mpt_entry.lr = 1;
1593 mpt_entry.lr = 1;

Completed in 113 milliseconds

12