Searched refs:arrayp (Results 1 - 11 of 11) sorted by relevance

/opensolaris-onvv-gate/usr/src/uts/i86xpv/sys/
H A Devtchn_impl.h81 #define SET_EVTCHN_BIT(bit, arrayp) \
82 ((arrayp)[bit >> EVTCHN_SHIFT] |= \
84 #define CLEAR_EVTCHN_BIT(bit, arrayp) \
85 ((arrayp)[bit >> EVTCHN_SHIFT] &= \
87 #define TEST_EVTCHN_BIT(bit, arrayp) \
88 ((arrayp)[bit >> EVTCHN_SHIFT] & \
/opensolaris-onvv-gate/usr/src/cmd/sendmail/db/log/
H A Dlog_archive.c50 char **array, **arrayp, *name, *p, *pref, buf[MAXPATHLEN]; local
167 for (arrayp = array; *arrayp != NULL; ++arrayp)
168 __os_freestr(*arrayp);
191 char **array, **arrayp, *p, *real_name; local
329 for (arrayp = array; *arrayp != NULL; ++arrayp)
330 __os_freestr(*arrayp);
380 char **array, **arrayp, **orig, *strp; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/libxcurses/src/tic/
H A Dticmain.c186 find(char const *capname, void **arrayp, int *indexp) argument
191 *arrayp = (void*) boolean;
197 *arrayp = (void*) number;
203 *arrayp = (void*) string;
/opensolaris-onvv-gate/usr/src/lib/libfsmgt/common/
H A Dfileutil.c52 fileutil_free_string_array(char **arrayp, int num_elements) argument
54 if (arrayp != NULL) {
57 for (i = 0; i < num_elements && arrayp[i] != NULL; i++) {
58 free(arrayp[i]);
61 free(arrayp);
/opensolaris-onvv-gate/usr/src/cmd/svc/common/
H A Dmanifest_find.c226 * returned to arrayp. The array will be terminated with a NULL pointer.
240 * Note, however, that *arrayp will be set to NULL if the selection is
253 manifest_info_t ***arrayp, int flags)
275 *arrayp = tsdp->tsd_array;
278 *arrayp = NULL;
252 find_manifests(scf_handle_t *hndl, const char *dir, manifest_info_t ***arrayp, int flags) argument
/opensolaris-onvv-gate/usr/src/cmd/oawk/
H A Drun.c996 CELL *vp, *arrayp, *cp, **tp; local
1004 arrayp = (CELL *) a[1];
1005 if (!(arrayp->tval & ARR))
1006 error(FATAL, "%ws is not an array", arrayp->nval);
1007 tp = (CELL **) arrayp->sval;
/opensolaris-onvv-gate/usr/src/cmd/awk/
H A Drun.c1452 register Cell *x, *vp, *arrayp, *cp, *ncp; local
1457 arrayp = execute(a[1]);
1458 if (!isarr(arrayp))
1459 ERROR "%s is not an array", arrayp->nval FATAL;
1461 tp = (Array *)arrayp->sval;
1462 tempfree(arrayp, "");
/opensolaris-onvv-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_fct.c853 emlxs_init_fct_bufpool(emlxs_hba_t *hba, char **arrayp, uint32_t cnt) argument
866 if (!cnt || !arrayp) {
871 datap = (uint8_t *)arrayp[i];
960 char **arrayp; local
968 arrayp = NULL;
970 (DDI_PROP_DONTPASS), buf, &arrayp, &cnt);
972 if ((rval != DDI_PROP_SUCCESS) || !cnt || !arrayp) {
975 arrayp = NULL;
978 (DDI_PROP_DONTPASS), "fct-bufpool", &arrayp, &cnt);
980 if ((rval != DDI_PROP_SUCCESS) || !cnt || !arrayp) {
[all...]
H A Demlxs_dhchap.c8260 char **arrayp; local
8272 arrayp = NULL;
8275 buffer, &arrayp, &cnt);
8277 if ((rval != DDI_PROP_SUCCESS) || !cnt || !arrayp) {
8280 arrayp = NULL;
8283 "auth-cfgs", &arrayp, &cnt);
8285 if ((rval != DDI_PROP_SUCCESS) || !cnt || !arrayp) {
8289 prop_str = arrayp[i];
8911 char **arrayp; local
8923 arrayp
[all...]
H A Demlxs_solaris.c10612 char **arrayp; local
10631 arrayp = NULL;
10634 (DDI_PROP_DONTPASS), buffer, &arrayp, &cnt);
10636 if ((rval != DDI_PROP_SUCCESS) || !cnt || !arrayp) {
10639 arrayp = NULL;
10642 (DDI_PROP_DONTPASS), "vport", &arrayp, &cnt);
10645 if ((rval != DDI_PROP_SUCCESS) || !cnt || !arrayp) {
10651 s = (uint8_t *)arrayp[i];
10863 (void) ddi_prop_free((void *) arrayp);
/opensolaris-onvv-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_xdr.c3928 xdr_snfs_argop4_free(XDR *xdrs, nfs_argop4 **arrayp, int len) argument
3931 nfs_argop4 *array = *arrayp;
4098 kmem_free(*arrayp, len * sizeof (nfs_argop4));
4099 *arrayp = NULL;
4470 xdr_nfs_resop4_free(XDR *xdrs, nfs_resop4 **arrayp, int len, int decode_len) argument
4473 nfs_resop4 *array = *arrayp;
4592 kmem_free(*arrayp, len * sizeof (nfs_resop4));
4593 *arrayp = NULL;
4598 xdr_snfs_resop4_free(XDR *xdrs, nfs_resop4 **arrayp, int len, int decode_len) argument
4600 return (xdr_nfs_resop4_free(xdrs, arrayp, le
[all...]

Completed in 227 milliseconds