Searched refs:inbuf (Results 76 - 100 of 148) sorted by relevance

123456

/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Dnoauthdg.c255 unsigned char inbuf[12]; /* XXX size */ local
267 (h, actuid, boot_time, inbuf, 0, sizeof(outbuf),
/macosx-10.10.1/libiconv-42/libiconv/tests/
H A Dtable-from.c50 const char* inbuf = (const char*) buf; local
56 result = iconv(cd,(ICONV_CONST char**)&inbuf,&inbytesleft,&outbuf,&outbytesleft);
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Deap.h71 void (*print_packet) __P((void (*printer)(void *, char *, ...), void *arg, u_char code, char *inbuf, int insize));
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Dscram.c506 char * inbuf = NULL; local
528 inbuf = sparams->utils->malloc (clientinlen + 1);
530 if (inbuf == NULL) {
535 memcpy(inbuf, clientin, clientinlen);
536 inbuf[clientinlen] = 0;
538 if (strlen(inbuf) != clientinlen) {
544 p = inbuf;
618 text->gs2_header_length = p - inbuf + 1;
638 text->gs2_header_length = p - inbuf + 1;
650 memcpy(text->gs2_header, inbuf, tex
1098 char *inbuf = NULL; local
2088 char * inbuf = NULL; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/memchan/memchan/generic/
H A Dbuf.c421 * Writes at most size bytes from inbuf and appends
436 Buf_Write (buf, inbuf, size)
438 CONST VOID* inbuf;
446 return iBuf->type->writeProc (buf, iBuf->clientData, inbuf, size);
/macosx-10.10.1/xar-254/xar/lib/
H A Ddata.c64 int32_t xar_data_read(xar_t x, xar_file_t f, void *inbuf, size_t bsize, void *context) { argument
87 memcpy(inbuf,readbuf,sizetoread);
96 r = read(DATA_CONTEXT(context)->fd, inbuf, bsize);
/macosx-10.10.1/zlib-55/zlib/examples/
H A Dgun.c82 unsigned char *inbuf; member in struct:ind
95 next = me->inbuf;
160 unsigned char inbuf[SIZE]; /* input buffer */ variable
392 ind.inbuf = inbuf;
/macosx-10.10.1/file_cmds-242/chmod/
H A Dchmod_acl.c226 char *inbuf; local
238 inbuf = malloc(MAX_ACL_TEXT_SIZE);
240 if (inbuf == NULL)
242 strncpy(inbuf, input, MAX_ACL_TEXT_SIZE);
243 inbuf[MAX_ACL_TEXT_SIZE - 1] = '\0';
248 oinbuf = inbuf;
262 free(inbuf);
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Diconv.c58 const char* * inbuf, size_t *inbytesleft,
437 char* * __restrict inbuf, size_t * __restrict inbytesleft,
441 if (inbuf == NULL || *inbuf == NULL)
445 (const char* *)inbuf,inbytesleft,
730 libiconv(iconv_t cd, const char ** inbuf,
734 return iconv(cd, (char **)inbuf, inbytesleft, outbuf, outbytesleft);
436 iconv(iconv_t icd, char* * __restrict inbuf, size_t * __restrict inbytesleft, char* * __restrict outbuf, size_t * __restrict outbytesleft) argument
/macosx-10.10.1/autofs-246/autofs_kext/
H A Dauto_subr.c887 uint8_t *inbuf; local
932 inbuf = (uint8_t *)data;
942 error = getstring(&alp->mounta.dir, &inbuf,
946 error = getstring(&alp->mounta.opts, &inbuf,
950 error = getstring(&alp->mounta.path, &inbuf,
954 error = getstring(&alp->mounta.map, &inbuf,
958 error = getstring(&alp->mounta.subdir, &inbuf,
962 error = getstring(&alp->mounta.trig_mntpnt, &inbuf,
966 error = getint(&alp->mounta.flags, &inbuf,
970 error = getint(&alp->mounta.mntflags, &inbuf,
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Drsa.c268 static const unsigned char inbuf[] = "hello, world!"; local
287 ret = RSA_private_encrypt(sizeof(inbuf), inbuf, buffer,
301 if (ret == sizeof(inbuf) && ct_memcmp(buffer, inbuf, sizeof(inbuf)) == 0) {
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_write_set_format_shar.c410 uuencode_line(struct shar *shar, const char *inbuf, size_t len) argument
423 uuencode_group(inbuf, buf);
425 inbuf += 3;
429 tmp_buf[0] = inbuf[0];
433 tmp_buf[1] = inbuf[1];
435 uuencode_group(inbuf, buf);
/macosx-10.10.1/network_cmds-457/rarpd.tproj/
H A Drarpd.c234 char inbuf[8192]; local
245 ifc.ifc_len = sizeof(inbuf);
246 ifc.ifc_buf = inbuf;
574 char inbuf[8192]; local
591 ifc.ifc_len = sizeof(inbuf);
592 ifc.ifc_buf = inbuf;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_x509_tp/lib/
H A DTPNetwork.cpp48 const unsigned char *inbuf = (const unsigned char *)rtnBlob.Data; local
52 CSSM_RETURN ortn = cuConvertPem(inbuf, inlen, &outbuf, &outlen);
63 alloc.free((void *)inbuf);
/macosx-10.10.1/tcsh-65/tcsh/win32/
H A Ddirent.c65 DIR * opendir(const char *inbuf) { argument
75 buflen = lstrlen(inbuf) + 1;
77 (void)StringCbCopy(buf,buflen,inbuf);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Drd_req.c107 const krb5_data *inbuf,
112 ret = decode_AP_REQ(inbuf->data, inbuf->length, ap_req, &len);
667 const krb5_data *inbuf,
687 ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
712 const krb5_data *inbuf,
732 ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
800 * @param inbuf the (AP-REQ) authentication buffer
820 const krb5_data *inbuf,
846 ret = krb5_decode_ap_req(context, inbuf,
106 krb5_decode_ap_req(krb5_context context, const krb5_data *inbuf, krb5_ap_req *ap_req) argument
665 krb5_rd_req(krb5_context context, krb5_auth_context *auth_context, const krb5_data *inbuf, krb5_const_principal server, krb5_keytab keytab, krb5_flags *ap_req_options, krb5_ticket **ticket) argument
710 krb5_rd_req_with_keyblock(krb5_context context, krb5_auth_context *auth_context, const krb5_data *inbuf, krb5_const_principal server, krb5_keyblock *keyblock, krb5_flags *ap_req_options, krb5_ticket **ticket) argument
818 krb5_rd_req_ctx(krb5_context context, krb5_auth_context *auth_context, const krb5_data *inbuf, krb5_const_principal server, krb5_rd_req_in_ctx inctx, krb5_rd_req_out_ctx *outctx) argument
[all...]
/macosx-10.10.1/Libinfo-459/rpc.subproj/
H A Dpmap_rmt.c306 char outbuf[MAX_BROADCAST_SIZE], inbuf[UDPMSGSIZE]; local
329 nets = getbroadcastnets(addrs, sock, inbuf);
408 inlen = recvfrom(sock, inbuf, UDPMSGSIZE, 0, (struct sockaddr *)&raddr, &fromlen);
427 xdrmem_create(xdrs, inbuf, (u_int)inlen, XDR_DECODE);
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dhttp.h179 char *inbuf; /* buffer to receive data from underlying socket */ member in struct:http_conn
/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dtidy-int.h135 int tidyDocParseBuffer( TidyDocImpl* impl, TidyBuffer* inbuf );
/macosx-10.10.1/network_cmds-457/ifconfig.tproj/
H A Difbridge.c174 char *inbuf = NULL, *ninbuf; local
188 ninbuf = realloc(inbuf, len);
192 bifc.ifbic_buf = inbuf = ninbuf;
263 free(inbuf);
272 char *inbuf = NULL, *ninbuf; local
277 ninbuf = realloc(inbuf, len);
281 ifbac.ifbac_buf = inbuf = ninbuf;
299 free(inbuf);
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dtestsaslauthd.c70 int retry_read(int fd, void *inbuf, unsigned nbyte) argument
74 char *buf = (char *)inbuf;
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiffcp.c997 tdata_t inbuf = _TIFFmalloc(TIFFScanlineSize(in)); local
1007 if (TIFFReadScanline(in, inbuf, row, 0) < 0
1014 inp = ((uint8*)inbuf) + s;
1028 if (inbuf) _TIFFfree(inbuf);
1032 if (inbuf) _TIFFfree(inbuf);
1042 tdata_t inbuf = _TIFFmalloc(TIFFScanlineSize(in)); local
1052 if (TIFFReadScanline(in, inbuf, row, s) < 0
1059 inp = (uint8*)inbuf;
[all...]
/macosx-10.10.1/AppleUSBIrDA-145.2.4/DumpLog/
H A Ddumplog.cpp140 UInt32 inbuf[2]; // big buffer address passed to userclient local
143 inbuf[0] = (UInt32)&bigbuffer[0];
144 inbuf[1] = sizeof(bigbuffer);
148 kr = doCommand(conObj, 0x12, &inbuf, sizeof(inbuf), &info, &infosize);
/macosx-10.10.1/Security-57031.1.35/SecurityTool/
H A Dkeychain_utilities.c872 malloc_enc64_with_lines(const unsigned char *inbuf, argument
915 endbuf[i] = inbuf[i];
925 encChunk(inbuf, outp, 3);
927 inbuf += 3;
/macosx-10.10.1/autofs-246/automountd/
H A Dnfs_cast.c143 char outbuf[UDPMSGSIZE], inbuf[UDPMSGSIZE]; local
435 len = recvfrom(trans->tr_fd, inbuf, sizeof (inbuf), 0,
455 xdrmem_create(xdrs, (uint8_t *) inbuf, (uint_t)len, XDR_DECODE);

Completed in 274 milliseconds

123456