HomeSort by relevance Sort by last modified time
    Searched defs:lr (Results 1 - 25 of 25) sorted by null

  /netvirt/usr/src/lib/libldap4/common/
abandon.c 167 LDAPRequest *lr; local
182 for ( lr = ld->ld_requests; lr != NULL; lr = lr->lr_next ) {
183 if ( lr->lr_msgid == msgid ) { /* this message */
186 if ( lr->lr_origid == msgid ) { /* child: abandon it */
187 do_abandon( ld, msgid, lr->lr_msgid , serverctrls);
191 if ( lr != NULL ) {
192 if ( origid == msgid && lr->lr_parent != NULL )
    [all...]
unbind.c 59 LDAPRequest *lr, *nextlr; local
66 for ( lr = ld->ld_requests; lr != NULL; lr = nextlr ) {
67 nextlr = lr->lr_next;
68 free_request( ld, lr );
referral.c 27 static void addFollowedRef(LDAPRequest *lr, char *ref);
28 static void addToFollowRef(LDAPRequest *lr, char *ref);
29 static int addUnFollowedRef(LDAP *ld, LDAPRequest *lr, char *ref);
99 chase_referrals( LDAP *ld, LDAPRequest *lr, char **refs, int *count, int samerequest )
121 if ( lr->lr_parentcnt >= ld->ld_refhoplimit ) {
134 for ( origreq = lr; origreq->lr_parent != NULL;
152 addUnFollowedRef(ld, lr, refs[i]);
162 addUnFollowedRef(ld, lr, refs[i]);
191 lr, srv, NULL, 1 ) >= 0 ) {
194 addFollowedRef(lr, refs[i])
502 LDAPRequest *lr; local
    [all...]
request.c 171 LDAPRequest *lr; local
227 if (( lr = (LDAPRequest *)calloc( 1, sizeof( LDAPRequest ))) ==
237 lr->lr_msgid = msgid;
238 lr->lr_status = LDAP_REQST_INPROGRESS;
239 lr->lr_res_errno = LDAP_SUCCESS; /* optimistic */
240 lr->lr_ber = ber;
241 lr->lr_conn = lc;
244 lr->lr_origid = parentreq->lr_origid;
245 lr->lr_parentcnt = parentreq->lr_parentcnt + 1;
246 lr->lr_parent = parentreq
547 LDAPRequest *lr; local
679 LDAPRequest *lr; local
    [all...]
result.c 67 static int build_result_ber( LDAP *ld, BerElement *ber, LDAPRequest *lr );
68 static void merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr );
72 static int Ref_AddToRequest(LDAPRequest *lr, char **refs);
73 static void Ref_FreeAll(LDAPRequest *lr);
365 LDAPRequest *lr, *lrparent; local
518 else if (( lr = find_request_by_msgid( ld, id )) == NULL )
533 msgtypestr, id, lr->lr_origid );
535 id = lr->lr_origid;
542 lr->lr_res_msgtype = tag;
546 ( lr->lr_parent != NULL |
    [all...]
  /netvirt/usr/src/lib/libldap5/sources/ldap/common/
abandon.c 115 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->lr_msgid
    [all...]
unbind.c 83 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 );
result.c 54 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->lr_conn->lconn_status == LDAP_CONNST_DEAD )
502 LDAPRequest *lr; local
    [all...]
request.c 48 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->lr_ber = ber
682 LDAPRequest *lr; local
1225 LDAPRequest *lr; local
1246 LDAPRequest *lr; local
    [all...]
  /netvirt/usr/src/lib/lvm/libmeta/common/
meta_mn_changelog.c 57 static int mdmn_log_it(set_t, md_error_t *, mdmn_changelog_record_t *lr);
71 dump_rec(char *fn_name, mdmn_changelog_record_t *lr)
74 "msglen %d\n", fn_name, lr->lr_selfid, lr->lr_class,
75 lr->lr_flags, lr->lr_msglen);
78 dump_rec_od(char *fn_name, mdmn_changelog_record_od_t *lr)
81 "msglen %d\n", fn_name, lr->lr_selfid, lr->lr_class,
82 lr->lr_flags, lr->lr_msglen)
236 mdmn_changelog_record_t *lr; local
300 mdmn_changelog_record_t *lr; local
377 mdmn_changelog_record_t *lr = NULL; local
455 mdmn_changelog_record_t *lr; local
596 mdmn_changelog_record_od_t *lr; local
    [all...]
meta_set.c 5716 mdmn_changelog_record_t *lr; local
    [all...]
  /netvirt/usr/src/lib/libnsl/netdir/
netdir.c 216 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 = *((tp->nc_lookups) + i)
454 char *lr; \/* routines to try *\/ local
512 char *lr; \/* routines to try *\/ local
    [all...]
  /netvirt/usr/src/uts/common/fs/zfs/
zfs_log.c 222 lr_create_t *lr; local
252 txsize = sizeof (*lr) + namesize + fuidsz + xvatsize;
253 lrsize = sizeof (*lr);
264 lr = (lr_create_t *)&itx->itx_lr;
265 lr->lr_doid = dzp->z_id;
266 lr->lr_foid = zp->z_id;
267 lr->lr_mode = zp->z_phys->zp_mode;
269 lr->lr_uid = (uint64_t)zp->z_phys->zp_uid;
271 lr->lr_uid = fuidp->z_fuid_owner;
274 lr->lr_gid = (uint64_t)zp->z_phys->zp_gid
334 lr_remove_t *lr; local
358 lr_link_t *lr; local
384 lr_create_t *lr; local
418 lr_rename_t *lr; local
488 lr_write_t *lr; local
543 lr_truncate_t *lr; local
568 lr_setattr_t *lr; local
634 lr_acl_t *lr; local
    [all...]
zfs_replay.c 74 zfs_replay_error(zfsvfs_t *zfsvfs, lr_t *lr, boolean_t byteswap)
265 lr_create_t *lr = (lr_create_t *)lracl; local
280 txtype = (int)lr->lr_common.lrc_txtype;
298 if ((error = zfs_zget(zfsvfs, lr->lr_doid, &dzp)) != 0)
303 lr->lr_mode, lr->lr_uid, lr->lr_gid, lr->lr_rdev, lr->lr_foid);
312 ZFS_TIME_DECODE(&xva.xva_vattr.va_ctime, lr->lr_crtime)
    [all...]
dmu_traverse.c 503 lr_write_t *lr = (lr_write_t *)lrc; local
504 blkptr_t *bp = &lr->lr_blkptr;
510 zb->zb_object = lr->lr_foid;
511 zb->zb_blkid = lr->lr_offset / BP_GET_LSIZE(bp);
zvol.c 114 static int zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio);
263 zvol_replay_write(zvol_state_t *zv, lr_write_t *lr, boolean_t byteswap)
266 char *data = (char *)(lr + 1); /* data follows lr_write_t */
267 uint64_t off = lr->lr_offset;
268 uint64_t len = lr->lr_length;
273 byteswap_uint64_array(lr, sizeof (*lr));
290 zvol_replay_err(zvol_state_t *zv, lr_t *lr, boolean_t byteswap)
705 zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
713 int dlen = lr->lr_length; /* length of user data *
774 lr_write_t *lr; local
    [all...]
zil.c 262 lr_t *lr = (lr_t *)lrp; local
263 reclen = lr->lrc_reclen;
265 parse_lr_func(zilog, lr, arg, txg);
295 lr_write_t *lr = (lr_write_t *)lrc; local
296 zil_claim_log_block(zilog, &lr->lr_blkptr, tx, first_txg);
314 lr_write_t *lr = (lr_write_t *)lrc; local
315 blkptr_t *bp = &lr->lr_blkptr;
775 lr_write_t *lr = (lr_write_t *)lrc; local
786 lr->lr_length, sizeof (uint64_t), uint64_t);
827 lr = (lr_write_t *)(lwb->lwb_buf + lwb->lwb_nused)
    [all...]
  /netvirt/usr/src/lib/libxcurses/src/libc/xcurses/
doupdate.c 657 cost(fr, lr)
658 int fr, lr;
676 for (cc = 1, ++lr, nr = fr+1; nr <= lr; ++nr, ++cc) {
686 for (--lr, or = fr; or <= lr; ++or) {
687 for (nr = fr; nr <= lr; ++nr) {
722 return LC(lr+1,lr+1).cost;
739 script(fr, lr)
808 int i, j, lr; local
    [all...]
  /netvirt/usr/src/cmd/perl/5.6.1/distrib/
gv.c 1313 int fl=0, off, off1, lr=0, assign=AMGf_assign & flags, notfound=0; local
    [all...]
  /netvirt/usr/src/lib/libxcurses2/src/libc/xcurses/
doupdate.c 792 cost(int fr, int lr)
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)
874 i = j = lr + 1
938 int i, j, lr; local
    [all...]
  /netvirt/usr/src/cmd/lvm/rpc.mdcommd/
mdmn_commd_server.c 1513 mdmn_changelog_record_t *lr; local
    [all...]
  /netvirt/usr/src/uts/common/fs/nfs/
nfs_log.c 472 struct lr_alloc lr; local
481 lr.next = lr.prev = &lr;
482 lr.lr_flags = 0;
483 lr.log_record = loghdr;
484 lr.size = loghdr_len;
485 lr.alloc_cache = NULL;
486 lr.exi = NULL;
487 lr.lb = NULL
    [all...]
  /netvirt/usr/src/uts/common/io/ath/
ath_main.c 1038 int32_t sr, lr, nacked = 0; local
1093 lr = ds->ds_txstat.ts_longretry;
1095 asc->asc_stats.ast_tx_longretry += lr;
1111 an->an_tx_retr += sr + lr;
    [all...]
  /netvirt/usr/src/cmd/cmd-inet/usr.sbin/ipqosconf/
ipqosconf.c 3026 struct lifreq *lr; local
    [all...]
  /netvirt/usr/src/cmd/ztest/
ztest.c 714 ztest_replay_create(ztest_replay_t *zr, lr_create_t *lr, boolean_t byteswap)
721 byteswap_uint64_array(lr, sizeof (*lr));
731 error = dmu_object_claim(os, lr->lr_doid, lr->lr_mode, 0,
741 osname, (u_longlong_t)lr->lr_doid,
749 ztest_replay_remove(ztest_replay_t *zr, lr_remove_t *lr, boolean_t byteswap)
756 byteswap_uint64_array(lr, sizeof (*lr));
759 dmu_tx_hold_free(tx, lr->lr_doid, 0, DMU_OBJECT_END)
1164 lr_create_t *lr; local
    [all...]

Completed in 2480 milliseconds