HomeSort by relevance Sort by last modified time
    Searched refs:strbuf (Results 1 - 25 of 29) sorted by null

1 2

  /external/iproute2/tc/
emp_ematch.l 39 static char *strbuf;
46 strbuf = realloc(strbuf, strbuf_size);
53 strbuf[strbuf_index++] = c;
60 memcpy(strbuf + strbuf_index, s, strlen(s));
73 if (strbuf == NULL) {
75 strbuf = calloc(1, strbuf_size);
76 if (strbuf == NULL)
86 yylval.b = bstr_new(strbuf, strbuf_index);
  /system/core/toolbox/
date.c 49 char strbuf[260]; local
84 strftime(strbuf, sizeof(strbuf),
89 strftime(strbuf, sizeof(strbuf),
93 printf("%s\n", strbuf);
alarm.c 19 char strbuf[26]; local
89 asctime_r(&tm, strbuf);
90 printf("%s", strbuf);
100 asctime_r(&tm, strbuf);
101 printf("Now: %s", strbuf);
123 asctime_r(&tm, strbuf);
124 printf("Requested %s", strbuf);
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 106 StringBuffer strbuf = new StringBuffer(nextPart); local
107 while (strbuf.length() > 0
108 && (strbuf.charAt(0) == '\r' || strbuf.charAt(0) == '\n'))
109 strbuf.deleteCharAt(0);
111 if (strbuf.length() == 0)
113 nextPart = strbuf.toString();
  /external/openssl/crypto/asn1/
a_mbstr.c 100 char strbuf[32]; local
148 BIO_snprintf(strbuf, sizeof strbuf, "%ld", minsize);
149 ERR_add_error_data(2, "minsize=", strbuf);
155 BIO_snprintf(strbuf, sizeof strbuf, "%ld", maxsize);
156 ERR_add_error_data(2, "maxsize=", strbuf);
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_proto.h 80 extern void dhd_prot_dump(dhd_pub_t *dhdp, struct bcmstrbuf *strbuf);
dhd_bus.h 78 extern void dhd_bus_dump(dhd_pub_t *dhdp, struct bcmstrbuf *strbuf);
dhd_common.c 159 struct bcmstrbuf *strbuf = &b; local
161 bcm_binit(strbuf, buf, buflen);
164 bcm_bprintf(strbuf, "%s\n", dhd_version);
165 bcm_bprintf(strbuf, "\n");
166 bcm_bprintf(strbuf, "pub.up %d pub.txoff %d pub.busstate %d\n",
168 bcm_bprintf(strbuf, "pub.hdrlen %d pub.maxctl %d pub.rxsz %d\n",
170 bcm_bprintf(strbuf, "pub.iswl %d pub.drv_version %ld pub.mac %s\n",
172 bcm_bprintf(strbuf, "pub.bcmerror %d tickcnt %d\n", dhdp->bcmerror, dhdp->tickcnt);
174 bcm_bprintf(strbuf, "dongle stats:\n");
175 bcm_bprintf(strbuf, "tx_packets %ld tx_bytes %ld tx_errors %ld tx_dropped %ld\n"
    [all...]
dhd_sdio.c 1747 struct bcmstrbuf strbuf; local
    [all...]
dhd_cdc.c 321 dhd_prot_dump(dhd_pub_t *dhdp, struct bcmstrbuf *strbuf)
323 bcm_bprintf(strbuf, "Protocol CDC: reqid %d\n", dhdp->prot->reqid);
  /external/ppp/pppd/plugins/rp-pppoe/
if.c 81 void strgetmsg(int fd, struct strbuf *ctlp, struct strbuf *datap, int *flagsp, char *caller);
670 struct strbuf data;
770 struct strbuf ctl;
782 if (putmsg(fd, &ctl, (struct strbuf*) NULL, flags) < 0)
790 struct strbuf ctl;
801 if (putmsg(fd, &ctl, (struct strbuf*) NULL, flags) < 0)
809 struct strbuf data, ctl;
836 struct strbuf ctl;
843 strgetmsg(fd, &ctl, (struct strbuf*)NULL, &flags, "dlinfoack")
    [all...]
  /external/openssl/apps/
enc.c 109 char *strbuf=NULL; local
374 strbuf=OPENSSL_malloc(SIZE);
376 if ((buff == NULL) || (strbuf == NULL))
429 strbuf[0]='\0';
430 i=EVP_read_pw_string((char *)strbuf,SIZE,buf,enc);
433 if (strbuf[0] == '\0')
438 str=strbuf;
558 if (str == strbuf)
675 if (strbuf != NULL) OPENSSL_free(strbuf);
    [all...]
  /external/netperf/
nettest_dlpi.c 155 struct strbuf send_message;
705 struct strbuf recv_message;
    [all...]
netlib.c 255 struct strbuf control_message = {DLPI_DATA_SIZE, 0, (char *)control_data};
    [all...]