Searched refs:bufptr (Results 26 - 50 of 72) sorted by relevance

123

/macosx-10.10/cups-408/cups/scheduler/
H A Dtype.c739 unsigned char *bufptr; /* Pointer into buffer */ local
794 bufptr = fb->buffer + rules->offset - fb->offset;
796 if ((*bufptr >= 32 && *bufptr <= 126) ||
797 (*bufptr >= 8 && *bufptr <= 13) ||
798 *bufptr == 26 || *bufptr == 27)
801 bufptr ++;
836 bufptr
[all...]
H A Ddirsvc.c1543 char *bufptr; /* Pointer into buffer */ local
1545 for (i = 0, bufptr = buffer; i < p->num_auth_info_required; i ++)
1547 if (bufptr >= (buffer + bufsize - 2))
1551 *bufptr++ = ',';
1553 strlcpy(bufptr, p->auth_info_required[i], bufsize - (size_t)(bufptr - buffer));
1554 bufptr += strlen(bufptr);
H A Dcups-driverd.cxx844 char *bufptr, /* Pointer into filename buffer */ local
951 if ((bufptr = strstr(buffer, ".drv/")) != NULL)
952 bufptr += 4;
953 else if ((bufptr = strstr(buffer, ".drv.gz/")) != NULL)
954 bufptr += 7;
955 else if ((bufptr = strstr(buffer, ".tar/")) != NULL)
956 bufptr += 4;
957 else if ((bufptr = strstr(buffer, ".tar.gz/")) != NULL)
958 bufptr += 7;
960 if (bufptr)
[all...]
H A Dclient.c2464 char *bufptr, /* Pointer into buffer */ local
2584 for (bufptr = con->header, bufend = con->header + con->header_used,
2586 !con->got_fields && bufptr < bufend;
2587 bufptr ++)
2589 if (*bufptr == '\n')
2595 if (bufptr > con->header && bufptr[-1] == '\r')
2596 bufptr[-1] = '\0';
2597 *bufptr++ = '\0';
2648 con->header_used -= bufptr
[all...]
/macosx-10.10/smb-759.0/lib/librpc/
H A Dlmshare.cpp226 void * bufptr)
230 if (!bufptr) {
234 pool = (rpc_mempool *)(void *)((uint8_t *)bufptr - rpc_mempool::block_size());
225 NetApiBufferFree( void * bufptr) argument
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nssov/nss-pam-ldapd/
H A Dnslcd-prot.h200 size_t bufptr; - the current position in the buffer
205 (buffer+bufptr)
209 if ((bufptr+(size_t)(sz))>buflen) \
212 DEBUG_PRINT("READ : buffer error: %d bytes too small",(bufptr+(sz)-(buflen))); \
218 bufptr+=(size_t)(sz);
249 /* read string in the buffer (using buffer, buflen and bufptr)
/macosx-10.10/smb-759.0/lib/librap/
H A Drap.h88 void RapNetApiBufferFree(void * bufptr);
H A Drap.c440 void RapNetApiBufferFree(void * bufptr) argument
442 free(bufptr);
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzle_move.c174 char *last = NULL, *bufptr, *ptr = endptr; local
181 bufptr = buf + BMC_BUFSIZE;
189 if (bufptr-- == buf)
193 *bufptr = *ptr-- ^ 32;
195 *bufptr = *ptr;
199 ret = mbrtowc(&wc, bufptr, charlen, &mbs);
255 bufptr = buf + BMC_BUFSIZE;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dsasl.c654 ber_slen_t ret, bufptr; local
663 bufptr = ret;
667 return bufptr;
681 return bufptr ? bufptr : ret;
711 return bufptr ? bufptr : ret;
729 bufptr += ber_pvt_sb_copy_out( &p->buf_in, (char*) buf + bufptr, len );
731 return bufptr;
[all...]
/macosx-10.10/cups-408/cups/cgi-bin/
H A Dadmin.c1915 *bufptr, /* Pointer into buffer */ local
2012 for (bufptr = buffer;
2013 bufptr < bufend && (ch = cupsFileGetChar(cupsd)) != EOF;)
2017 *bufptr++ = '\\';
2018 *bufptr++ = (char)ch;
2022 *bufptr++ = '\\';
2023 *bufptr++ = 'n';
2027 *bufptr++ = '\\';
2028 *bufptr++ = 't';
2031 *bufptr
3925 char *bufptr, /* Pointer into buffer */ local
[all...]
/macosx-10.10/cups-408/cups/cups/
H A Dfile.c490 char *bufptr, /* Current position in buffer */ local
525 bufptr = buffer;
530 if (*path == ';' || (*path == ':' && ((bufptr - buffer) > 1 || !isalpha(buffer[0] & 255))))
535 if (bufptr > buffer && bufptr[-1] != '/' && bufptr < bufend)
536 *bufptr++ = '/';
538 strlcpy(bufptr, filename, (size_t)(bufend - bufptr));
550 bufptr
[all...]
H A Dstring-private.h199 extern double _cupsStrScand(const char *buf, char **bufptr,
H A Dtls-gnutls.c834 char *bufptr, /* Pointer into buffer */ local
839 bufptr = buffer + strlen(buffer);
841 while (*filename && bufptr < bufend)
844 *bufptr++ = *filename;
846 *bufptr++ = '_';
851 if (bufptr < bufend)
852 *bufptr++ = '.';
854 strlcpy(bufptr, ext, (size_t)(bufend - bufptr + 1));
H A Dpwg-media.c42 static int pwg_scan_measurement(const char *buf, char **bufptr, int numer,
1136 char **bufptr, /* O - First byte after the number */
1175 if (bufptr)
1176 *bufptr = (char *)buf;
1134 pwg_scan_measurement( const char *buf, char **bufptr, int numer, int denom) argument
/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/edit/
H A Dhistory.c803 register char *bufptr = ((char*)buff)+insize; local
817 while(--bufptr >= (char*)buff)
819 c= *bufptr;
822 if(c=='\\' && *(bufptr+1)!='\n')
823 bufptr++;
828 if(++bufptr <= (char*)buff)
830 *bufptr++ = '\n';
831 *bufptr++ = 0;
832 size = bufptr - (char*)buff;
858 *bufptr
[all...]
/macosx-10.10/ntp-92/ntpd/
H A Drefclock_acts.c208 char *bufptr; /* buffer pointer */ member in struct:actsunit
268 up->bufptr = pp->a_lastcode;
318 pp->lencode = refclock_gtraw(rbufp, tbuf, BMAX - (up->bufptr -
322 if (up->bufptr == pp->a_lastcode) {
327 *up->bufptr = '\0';
329 up->bufptr = pp->a_lastcode;
332 *up->bufptr++ = *tptr;
886 up->bufptr = pp->a_lastcode;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dalock.c174 alock_read_iattr ( unsigned char * bufptr )
179 assert (bufptr != NULL);
181 bufptr += sizeof (unsigned long int);
184 val += (unsigned long int) *bufptr--;
192 alock_write_iattr ( unsigned char * bufptr, argument
197 assert (bufptr != NULL);
200 *bufptr++ = (unsigned char) (val & 0xff);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblber/
H A Dsockbuf.c624 ber_slen_t bufptr = 0, ret, max; local
636 bufptr += ret;
639 if ( len == 0 ) return bufptr;
653 return ( bufptr ? bufptr : ret );
657 bufptr += ber_pvt_sb_copy_out( p, (char *) buf + bufptr, len );
658 return bufptr;
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dpex-win32.c557 char *bufptr; local
569 bufptr = env_block;
571 bufptr = stpcpy (bufptr, env_copy[var]) + 1;
573 *bufptr = '\0';
/macosx-10.10/bash-94.1.2/bash-3.2/support/
H A Dman2html.c3269 char *bufptr; local
3272 bufptr = buff;
3279 *bufptr = *c;
3280 bufptr++;
3281 if (bufptr >= buff + MED_STR_MAX)
3289 *bufptr = '(';
3290 bufptr++;
3291 if (bufptr < buff + MED_STR_MAX) {
3293 *bufptr = *c;
3294 bufptr
[all...]
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdc-source.cxx1934 char *bufptr, // Pointer into string buffer local
1947 bufptr = buffer;
1983 if (bufptr < bufend)
1984 *bufptr++ = (char)fp->get();
1993 if (bufptr < bufend)
1994 *bufptr++ = '$';
2004 strlcpy(bufptr, var->value->value, (size_t)(bufend - bufptr + 1));
2005 bufptr += strlen(bufptr);
[all...]
/macosx-10.10/zsh-61/zsh/Src/
H A Dinput.c114 char *buf, *bufptr; member in struct:instacks
486 instacktop->bufptr = inbufptr;
542 inbufptr = inbufpush = instacktop->bufptr;
/macosx-10.10/man-16/man/man2html/
H A Dman2html.c2430 char *bufptr; local
2432 bufptr = buff;
2436 while (isalnum(*c) && bufptr < buff + SIZE(buff)-4) {
2438 *bufptr++ = *c++;
2442 *bufptr++ = '(';
2443 while (isalnum(*c) && bufptr < buff + SIZE(buff)-3) {
2444 *bufptr++ = *c++;
2446 *bufptr++ = ')';
2448 while (*c != '\n' && bufptr < buff + SIZE(buff)-2) {
2451 *bufptr
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_xattr.c574 caddr_t bufptr = NULL; local
601 if (kmem_alloc(kernel_map, (vm_offset_t *)&bufptr, bufsize)) {
619 uio_addiov(auio, (uintptr_t)bufptr, iosize);
632 uio_addiov(auio, (uintptr_t)bufptr, iosize);
643 if (bufptr) {
644 kmem_free(kernel_map, (vm_offset_t)bufptr, bufsize);
870 caddr_t bufptr = NULL; local
944 if (kmem_alloc(kernel_map, (vm_offset_t *)&bufptr, bufsize)) {
963 uio_addiov(auio, (uintptr_t)bufptr, iosize);
972 uio_addiov(auio, (uintptr_t)bufptr, iosiz
[all...]

Completed in 349 milliseconds

123