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

1 2

  /external/libppp/src/
vjcomp.c 117 u_char *bufp; local
128 bufp = MBUF_CTOP(bp);
129 len = sl_uncompress_tcp(&bufp, len, type, &ipcp->vj.cslc, &ipcp->vj.slstat,
147 bufp = work + MAX_HDR;
148 bp = mbuf_Read(bp, bufp, rlen);
149 len = sl_uncompress_tcp(&bufp, olen, type, &ipcp->vj.cslc, &ipcp->vj.slstat,
158 bp = m_prepend(bp, bufp, len, 0);
pred.c 181 u_char bufp[MAX_MTU + 2]; local
187 cp = bufp;
193 fcs = hdlc_Fcs(bufp, 2 + orglen);
196 len = compress(state, bufp + 2, wp, orglen);
204 memcpy(wp, bufp + 2, orglen);
223 u_char *bufp; local
229 pp = bufp = MBUF_CTOP(wp);
262 fcs = hdlc_Fcs(bufp, wp->m_len = pp - bufp);
  /external/libselinux/src/
enabled.c 15 char *bufp; local
42 while ((bufp = fgets(buf, sizeof buf - 1, fp)) != NULL) {
49 if (!bufp)
init.c 33 char *bufp; local
56 while ((bufp = fgets(buf, sizeof buf - 1, fp)) != NULL) {
74 while ((bufp = fgets(buf, sizeof buf - 1, fp)) != NULL) {
90 if (bufp)
  /external/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];
  /system/core/libcutils/
open_memstream.c 28 * - The values at "*bufp" and "*sizep" should be considered read-only,
38 * - After fclose(), the caller must eventually free(*bufp).
68 char** bufp; /* pointer to buffer pointer */ member in struct:__anon43950
106 stream->bufp, *stream->bufp, newSize));
107 char* newBuf = (char*) realloc(*stream->bufp, newSize);
111 *stream->bufp = newBuf;
134 memset(*stream->bufp + stream->eof, '\0',
139 memcpy(*stream->bufp + stream->offset, buf, size);
150 *(*stream->bufp + stream->offset), stream->offset))
    [all...]
  /bootable/recovery/mtdutils/
mounts.c 63 const char *bufp; local
114 bufp = buf;
124 matches = sscanf(bufp, "%63s %63s %63s %127s",
140 printf("matches was %d on <<%.40s>>\n", matches, bufp);
145 while (nbytes > 0 && *bufp != '\n') {
146 bufp++;
150 bufp++;
mtdutils.c 74 const char *bufp; local
129 bufp = buf;
137 matches = sscanf(bufp, "mtd%d: %x %x \"%63[^\"]",
157 while (nbytes > 0 && *bufp != '\n') {
158 bufp++;
162 bufp++;
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_video.c 47 char bufp[BUFF_SIZE_128]; local
55 snprintf(bufp, BUFF_SIZE_128, "/data/v_%d.yuv", v_cnt);
59 file_fdp = open(bufp, O_RDWR | O_CREAT, 0777);
62 CDBG("cannot open file %s\n", bufp);
66 CDBG("%s:dump frame to '%s'\n", __func__, bufp);
mm_qcamera_snapshot.c 63 char bufp[BUFF_SIZE_128]; local
68 snprintf(bufp, BUFF_SIZE_128, "/data/main_raw_%d.yuv", raw_snapshot_cnt);
71 snprintf(bufp, BUFF_SIZE_128, "/data/main_%d.yuv", snapshot_cnt);
73 snprintf(bufp, BUFF_SIZE_128, "/data/thumb_%d.yuv", snapshot_cnt);
77 file_fdp = open(bufp, O_RDWR | O_CREAT, 0777);
80 CDBG("cannot open file %s\n", bufp);
84 CDBG("%s:dump snapshot frame to '%s'\n", __func__, bufp);
    [all...]
  /external/srec/srec/crec/
srec_debug.c 28 char *bufp = &buf[0]; local
35 bufp += sprintf(bufp, "%d,", awtoken->word);
38 if (bufp > &buf[0]) *(bufp - 1) = 0;
  /external/ppp/pppd/
cbcp.c 369 u_char *bufp = buf; local
388 PUTCHAR(CB_CONF_USER, bufp);
390 PUTCHAR(len , bufp);
391 PUTCHAR(5, bufp); /* delay */
392 PUTCHAR(1, bufp);
393 BCOPY(us->us_number, bufp, slen + 1);
400 PUTCHAR(CB_CONF_ADMIN, bufp);
402 PUTCHAR(len, bufp);
403 PUTCHAR(5, bufp); /* delay */
410 PUTCHAR(CB_CONF_NO, bufp);
    [all...]
  /external/icu4c/test/letest/
gendata.cpp 68 le_int32 bufp = 0; local
73 if (i % 8 == 0 && bufp != 0) {
75 bufp = 0;
78 bufp += sprintf(&lineBuffer[bufp], "0x%8.8X, ", longs[i]);
81 if (bufp != 0) {
82 lineBuffer[bufp - 2] = '\0';
91 le_int32 bufp = 0; local
96 if (i % 8 == 0 && bufp != 0) {
98 bufp = 0
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/
SDL_main.c 82 char *bufp; local
86 for ( bufp = cmdline; *bufp; ) {
88 while ( SDL_isspace(*bufp) ) {
89 ++bufp;
92 if ( *bufp == '"' ) {
93 ++bufp;
94 if ( *bufp ) {
96 argv[argc] = bufp;
101 while ( *bufp && (*bufp != '"') )
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/main/win32/
SDL_win32_main.c 81 char *bufp; local
86 for ( bufp = cmdline; *bufp; ) {
88 while ( isspace(*bufp) ) {
89 ++bufp;
92 if ( *bufp == '"' ) {
93 ++bufp;
94 if ( *bufp ) {
96 argv[argc] = bufp;
101 while ( *bufp && ( *bufp != '"' || (lastp && *lastp == '\\') ) )
275 char *bufp, *appname; local
337 wchar_t *bufp; local
340 char *bufp; local
    [all...]
  /external/icu4c/tools/genrb/
derb.c 421 char *bufp = buf, *bufend = buf + sizeof(buf) - 1 ; local
423 ucnv_fromUnicode(converter, &bufp, bufend, &str, strEnd, 0, 0, &err);
424 *bufp = 0;
441 UChar *bufp = buf, *bufend = buf + (sizeof(buf)/sizeof(buf[0])) - 1 ; local
443 ucnv_toUnicode(defaultConverter, &bufp, bufend, &str, strEnd, 0, 0, &err);
444 *bufp = 0;
446 printString(out, converter, buf, (int32_t)(bufp - buf));
  /external/openssl/crypto/
mem_dbg.c 667 char *bufp = buf; local
673 #define BUF_REMAIN (sizeof buf - (size_t)(bufp - buf))
682 BIO_snprintf(bufp, BUF_REMAIN, "[%02d:%02d:%02d] ",
684 bufp += strlen(bufp);
687 BIO_snprintf(bufp, BUF_REMAIN, "%5lu file=%s, line=%d, ",
689 bufp += strlen(bufp);
693 BIO_snprintf(bufp, BUF_REMAIN, "thread=%lu, ",
695 bufp += strlen(bufp)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_string.c 384 char *bufp = string; local
385 while ( *bufp ) {
386 *bufp = SDL_toupper((unsigned char) *bufp);
387 ++bufp;
396 char *bufp = string; local
397 while ( *bufp ) {
398 *bufp = SDL_tolower((unsigned char) *bufp);
399 ++bufp;
421 const char *bufp = string + SDL_strlen(string) - 1; local
459 char *bufp = string; local
489 char *bufp = string; local
557 char *bufp = string; local
587 char *bufp = string; local
    [all...]
  /external/elfutils/libcpu/
i386_data.h 124 d->bufp[(*d->bufcntp)++] = '%';
125 d->bufp[(*d->bufcntp)++] = ch;
126 d->bufp[(*d->bufcntp)++] = 's';
127 d->bufp[(*d->bufcntp)++] = ':';
162 char *bufp = d->bufp; local
204 memcpy (&bufp[*bufcntp], tmpbuf, n + 1);
278 memcpy (&bufp[*bufcntp], tmpbuf, n + 1);
376 memcpy (&bufp[*bufcntp], tmpbuf, cp - tmpbuf);
397 char *buf = d->bufp + *bufcntp
505 char *bufp = d->bufp; local
532 char *bufp = d->bufp; local
943 char *bufp = d->bufp; local
1022 char *bufp = d->bufp; local
1090 char *bufp = d->bufp; local
1359 char *bufp = d->bufp; local
1382 char *bufp = d->bufp; local
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 799 static unsigned char *bufp; local
803 return *bufp++;
840 bufp = buf;
849 return *bufp++;
  /frameworks/native/cmds/installd/
commands.c 852 int bufp, bufe, bufi, readlen; local
883 bufp = 0;
888 bufi = bufp;
894 ALOGV("Processing line: %s\n", buf+bufp);
896 while (bufp < bufi && isspace(buf[bufp])) {
898 bufp++;
900 if (buf[bufp] == '#' || bufp == bufi) {
905 UPDATE_COMMANDS_DIR_PREFIX, name, buf+bufp);
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Still.cpp 94 char bufp[128]; local
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Still.cpp 93 char bufp[128]; local
    [all...]

Completed in 2216 milliseconds

1 2