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

1 2 3 4 5 6 7 8

  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
mbtranslate.c 66 char *bufp; local
90 bufp = byte ? byte : buf;
93 bufp += _curs_wctomb(bufp, *code & TRIM);
96 *bufp = '\0';
110 wchar_t *bufp; local
130 bufp = code ? code : buf;
144 *bufp++ = wchar;
149 *bufp = 0;
  /onnv/onnv-gate/usr/src/lib/libpri/common/
pri.c 124 * - freep(bufp, size)
137 uint64_t *bufp; /* buf holding PRI */ local
169 if ((bufp = (uint64_t *)allocp(size)) == NULL) {
174 if (read(pri_fd, bufp, size) < 0) {
175 freep(bufp, size);
187 freep(bufp, size);
191 freep(bufp, size);
196 *buf = bufp;
  /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/
kmem.c 109 char *bufp; local
119 for (bufp = buffer, left = size; left > 0; bufp += r, left -= r) {
120 r = read(*kvm, bufp, left);
ipft_sn.c 130 static char *bufp = NULL; local
136 if (!bufp)
137 bufp = malloc(i);
139 bufp = realloc(bufp, i);
141 if (read(sfd, bufp, i) != i)
145 bcopy(bufp, buf, n);
158 static char *bufp = NULL; local
168 if (!bufp)
169 bufp = malloc(i)
    [all...]
  /onnv/onnv-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
kernelEmulate.c 70 digest_buf_t *bufp; local
76 bufp = opp->context;
78 if (bufp != NULL) {
79 bufp->indata_len = 0;
84 if (buflen > bufp->buf_len) {
85 free(bufp->buf);
86 bufp->buf = NULL;
89 bufp = opp->context = calloc(1, sizeof (digest_buf_t));
90 if (bufp == NULL) {
95 if (bufp->buf == NULL)
155 digest_buf_t *bufp; local
    [all...]
kernelSign.c 422 digest_buf_t *bufp = session_p->sign.context; local
425 if (bufp == NULL || bufp->buf == NULL) {
430 bufp->buf, bufp->indata_len,
435 digest_buf_t *bufp = session_p->sign.context; local
442 if (bufp == NULL || bufp->buf == NULL) {
447 rv = C_Sign(hSession, bufp->buf, bufp->indata_len
    [all...]
kernelVerify.c 407 digest_buf_t *bufp = session_p->verify.context; local
414 if (bufp == NULL || bufp->buf == NULL) {
419 rv = C_Verify(hSession, bufp->buf, bufp->indata_len,
kernelSessionUtil.c 296 digest_buf_t *bufp = session_p->digest.context; local
298 if (bufp->buf != NULL) {
300 bzero(bufp->buf, bufp->indata_len);
301 free(bufp->buf);
303 free(bufp);
313 digest_buf_t *bufp = session_p->sign.context; local
315 if (bufp->buf != NULL) {
317 bzero(bufp->buf, bufp->indata_len)
324 digest_buf_t *bufp = session_p->verify.context; local
    [all...]
kernelDigest.c 620 digest_buf_t *bufp = session_p->digest.context; local
623 if (bufp == NULL || bufp->buf == NULL) {
628 NULL, bufp->buf, bufp->indata_len,
633 digest_buf_t *bufp = session_p->digest.context; local
640 if (bufp == NULL || bufp->buf == NULL) {
645 rv = C_Digest(hSession, bufp->buf, bufp->indata_len
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/vuidmice/
vuidm3p.c 99 uchar_t *bufp; local
101 bufp = mp->b_rptr;
105 code = *bufp++;
vuidm5p.c 83 uchar_t *bufp; local
85 bufp = mp->b_rptr;
89 code = *bufp++;
vuidm4p.c 97 unsigned char *bufp; local
99 bufp = mp->b_rptr;
103 code = *bufp++;
178 if (r > 1 && !(bufp[0] & MOUSE_START_CODE) &&
179 !(bufp[1] & MOUSE_START_CODE)) {
230 if (r > 0 && !(bufp[0] & MOUSE_START_CODE))
  /onnv/onnv-gate/usr/src/common/openssl/crypto/asn1/
f_enum.c 104 unsigned char *bufp; local
135 bufp=(unsigned char *)buf;
139 if ((bufp[0] == '0') && (buf[1] == '0'))
141 bufp+=2;
174 m=bufp[k+n];
f_int.c 108 unsigned char *bufp; local
148 bufp=(unsigned char *)buf;
152 if ((bufp[0] == '0') && (buf[1] == '0'))
154 bufp+=2;
186 m=bufp[k+n];
f_string.c 102 unsigned char *bufp; local
148 bufp=(unsigned char *)buf;
179 m=bufp[k+n];
  /onnv/onnv-gate/usr/src/uts/i86pc/os/
pci_bios.c 75 uchar_t *bufp; local
88 bufp = (uchar_t *)BIOS_IRQ_ROUTING_DATA;
92 bufp[i] = 0;
94 ((pci_irq_route_hdr_t *)hdrp)->pir_addr = (uint32_t)(uintptr_t)bufp;
118 ((uchar_t *)routes)[i] = bufp[i];
biosdisk.c 160 fn48_t *bufp; local
168 bufp = (fn48_t *)BIOS_RES_BUFFER_ADDR;
174 for (i = 0; i < sizeof (*bufp); i++)
175 ((uchar_t *)bufp)[i] = 0;
177 bufp->buflen = sizeof (*bufp);
181 rp.esi.word.si = (uint16_t)FP_OFF((uint_t)(uintptr_t)bufp);
182 rp.ds = FP_SEG((uint_t)(uintptr_t)bufp);
202 for (i = 0; i < sizeof (*bufp); i++)
203 tmp[i] = ((uchar_t *)bufp)[i]
252 caddr_t bufp; local
296 fn4b_t *bufp; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/fm/topo/modules/sun4v/hostbridge/
hb_mdesc.c 172 uint64_t *bufp; local
184 bufsiz = ldom_get_core_md(lhp, &bufp);
186 bufsiz = ldom_get_local_md(lhp, &bufp);
194 if ((mdp = md_init_intern(bufp, hb_alloc, hb_free)) == NULL ||
196 hb_free(bufp, (size_t)bufsiz);
203 hb_free(bufp, (size_t)bufsiz);
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
getspent_r.c 184 char *bufp; local
213 shadow->sp_namp = bufp = buffer;
223 if ((bufp = strchr(bufp, ':')) == 0) {
229 *bufp++ = '\0';
231 shadow->sp_pwdp = bufp;
233 if ((bufp = strchr(bufp, ':')) == 0) {
239 *bufp++ = '\0';
240 p = bufp;
    [all...]
  /onnv/onnv-gate/usr/src/lib/mms/mgmt/common/
mgmt_probe.c 69 char *bufp; local
157 bufp = &(buf[4]);
160 i++, bufp++) {
161 if ((*bufp == '\0') || (*bufp == ' ')) {
165 ser[i] = *bufp;
196 bufp = &(buf[8]);
198 for (i = 0; i < (sizeof (vid) - 1); i++, bufp++) {
199 if ((*bufp == '\0') || (*bufp == ' '))
    [all...]
  /onnv/onnv-gate/usr/src/lib/mms/mms/common/
host_ident.c 148 char *bufp = NULL; local
181 bufp = "unknown";
183 bufp = phe->h_name;
186 (void) strcpy(host, bufp);
  /onnv/onnv-gate/usr/src/uts/common/fs/ctfs/
ctfs_ctl.c 287 char *bufp = NULL; local
308 VERIFY(nvlist_pack(foo, &bufp, &len, NV_ENCODE_NATIVE,
313 (copyout(bufp, STRUCT_FGETP(st, ctst_buffer), len) == -1)) {
314 kmem_free(bufp, len);
317 kmem_free(bufp, len);
  /onnv/onnv-gate/usr/src/lib/pam_modules/list/
list.c 71 char *bufp; local
228 bufp = buf;
260 bufp++;
264 bufp++;
280 bufp++;
287 if ((bufp[0] == '@') && (bufp[1] != '\0')) {
288 bufp++;
291 if (innetgr(bufp, rhost, username,
298 userok = innetgr(bufp, NULL, username
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/disp/
class.c 277 void *bufp = NULL; local
300 if (CL_ALLOC(&bufp, parmsp->pc_cid, KM_NOSLEEP) != 0) {
306 parmsp->pc_clparms, reqpcredp, bufp);
309 CL_FREE(parmsp->pc_cid, bufp);
  /onnv/onnv-gate/usr/src/cmd/mms/mgmt/init/common/
mmsinit.c 96 char *bufp; local
160 bufp = strchr(mmhost, ':');
161 if (bufp == NULL) {
164 *bufp = '\0';
165 mmport = ++bufp;

Completed in 1620 milliseconds

1 2 3 4 5 6 7 8