Searched refs:reqp (Results 1 - 8 of 8) sorted by relevance

/osnet-11/usr/src/lib/libc/port/aio/
H A Daio.c347 aio_req_t *reqp; local
421 if ((reqp = _aio_req_alloc()) == NULL) {
427 * _aio_do_request() checks reqp->req_op to differentiate
430 reqp->req_op = mode;
431 reqp->req_resultp = resultp;
432 ap = &reqp->req_args;
438 if (_aio_hash_insert(resultp, reqp) != 0) {
439 _aio_req_free(reqp);
447 _aio_req_add(reqp, &__nextworker_rw, umode);
454 aio_req_t *reqp; local
687 aio_req_t *reqp; local
763 aio_req_t *reqp; local
799 _aio_cancel_req(aio_worker_t *aiowp, aio_req_t *reqp, int *canceled, int *done) argument
870 _aio_create_worker(aio_req_t *reqp, int mode) argument
1026 aio_req_t *reqp; /* current AIO request */ local
1205 aio_req_t *reqp; local
1256 _aio_req_mark_done(aio_req_t *reqp) argument
1306 aio_req_t *reqp; local
1336 _aiodone(aio_req_t *reqp, ssize_t retval, int error) argument
1508 _aio_fsync_del(aio_worker_t *aiowp, aio_req_t *reqp) argument
1587 aio_req_t *reqp; local
1650 aio_req_t *reqp; local
1686 _aio_set_result(aio_req_t *reqp, ssize_t retval, int error) argument
1706 _aio_req_add(aio_req_t *reqp, aio_worker_t **nextworker, int mode) argument
1852 aio_req_t *reqp; local
1908 _aio_req_del(aio_worker_t *aiowp, aio_req_t *reqp, int ostate) argument
1976 _aio_enq_doneq(aio_req_t *reqp) argument
1995 _aio_req_remove(aio_req_t *reqp) argument
2035 _aio_hash_insert(aio_result_t *resultp, aio_req_t *reqp) argument
2115 aio_req_t *reqp; local
2236 aio_req_t *reqp; local
[all...]
H A Daio_alloc.c166 aio_req_t *reqp; local
173 if ((reqp = _aio_freelist) == NULL) {
183 for (i = 0, reqp = _aio_freelist; i < nelem; i++, reqp++) {
184 reqp->req_state = AIO_REQ_FREE;
185 reqp->req_link = reqp + 1;
187 _aio_freelast = reqp - 1;
190 reqp = _aio_freelist;
192 if ((_aio_freelist = reqp
210 _aio_req_free(aio_req_t *reqp) argument
[all...]
H A Dposix_aio.c640 aio_req_t *reqp; local
669 if ((reqp = _aio_hash_del((aio_result_t *)resultp)) == NULL) {
674 ASSERT(reqp->req_head == NULL);
675 (void) _aio_req_remove(reqp);
677 _aio_req_free(reqp);
686 aio_req_t *reqp; local
718 if ((reqp = _aio_hash_del(resultp)) == NULL)
722 ASSERT(reqp->req_head == NULL);
723 (void) _aio_req_remove(reqp);
725 _aio_req_free(reqp);
734 _lio_remove(aio_req_t *reqp) argument
869 aio_req_t *reqp; local
949 aio_req_t *reqp; local
1537 aio_req_t *reqp; local
1583 aio_req_t *reqp; local
1745 aio_req_t *reqp; local
[all...]
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_metad_subr.c108 ckncvt_set_record(mddb_userreq_t *reqp, md_error_t *ep) argument
114 if (reqp->ur_size == sizeof (*sr))
118 if (reqp->ur_size >= sizeof (*sr))
121 reqp->ur_data = (uintptr_t)Realloc((void *)(uintptr_t)
122 reqp->ur_data, sizeof (*sr));
124 ((char *)(uintptr_t)reqp->ur_data) + reqp->ur_size,
125 '\0', sizeof (*sr) - reqp->ur_size);
126 reqp->ur_size = sizeof (*sr);
136 req = *reqp; /* structur
220 mddb_userreq_t *reqp = Zalloc(sizeof (*reqp)); local
311 mddb_userreq_t *reqp = NULL; local
881 mddb_userreq_t *reqp; local
[all...]
/osnet-11/usr/src/lib/scsi/libsmp/common/
H A Dsmp_engine.c453 smp_action_get_request(const smp_action_t *ap, void **reqp, size_t *dlenp) argument
455 if (reqp != NULL) {
457 *reqp = ap->sa_request + ap->sa_request_data_off;
459 *reqp = NULL;
494 smp_action_get_request_frame(const smp_action_t *ap, void **reqp, size_t *alenp) argument
496 if (reqp != NULL)
497 *reqp = ap->sa_request;
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_srv.c310 krb5_pa_pk_as_req *reqp = NULL; local
362 retval = k5int_decode_krb5_pa_pk_as_req(&k5data, &reqp);
368 print_buffer_bin(reqp->signedAuthPack.data,
369 reqp->signedAuthPack.length,
375 reqp->signedAuthPack.data, reqp->signedAuthPack.length,
518 if (reqp->kdcPkId.data != NULL) {
522 reqp->kdcPkId.data, reqp->kdcPkId.length, &valid_kdcPkId);
583 free_krb5_pa_pk_as_req(&reqp);
682 krb5_pa_pk_as_req *reqp = NULL; local
[all...]
/osnet-11/usr/src/lib/libnetcfg/common/
H A Dlibnetcfg_files.c1361 nvpair_t *reqp = NULL; local
1370 while ((reqp = nvlist_next_nvpair(plist, reqp)) != NULL) {
1371 pname = nvpair_name(reqp);
1378 (void) nvlist_remove(plist, pname, nvpair_type(reqp));
/osnet-11/usr/src/lib/libcfgadm/common/
H A Dconfig_admin.c276 static int compat_plugin(vers_req_t *reqp, int plugin_vers);
2921 compat_plugin(vers_req_t *reqp, int plugin_vers) argument
2924 if (!VALID_HSL_VERS(reqp->v_min) || !VALID_HSL_VERS(reqp->v_max) ||
2929 if (plugin_vers < reqp->v_min || plugin_vers > reqp->v_max) {

Completed in 406 milliseconds