Searched refs:databuf (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Modules/ |
D | binascii.c | 1410 const unsigned char *databuf; in binascii_b2a_qp_impl() local 1419 databuf = data->buf; in binascii_b2a_qp_impl() 1426 p = (const unsigned char *) memchr(databuf, '\n', datalen); in binascii_b2a_qp_impl() 1427 if ((p != NULL) && (p > databuf) && (*(p-1) == '\r')) in binascii_b2a_qp_impl() 1434 if ((databuf[in] > 126) || in binascii_b2a_qp_impl() 1435 (databuf[in] == '=') || in binascii_b2a_qp_impl() 1436 (header && databuf[in] == '_') || in binascii_b2a_qp_impl() 1437 ((databuf[in] == '.') && (linelen == 0) && in binascii_b2a_qp_impl() 1438 (in + 1 == datalen || databuf[in+1] == '\n' || in binascii_b2a_qp_impl() 1439 databuf[in+1] == '\r' || databuf[in+1] == 0)) || in binascii_b2a_qp_impl() [all …]
|
/external/curl/tests/libtest/ |
D | lib552.c | 127 static char databuf[70000]; /* MUST be more than 64k OR variable 133 size_t available = sizeof(databuf) - current_offset; /* What we have to in read_callback() 137 memcpy(ptr, databuf + current_offset, given); in read_callback() 187 for(i = 0; i < sizeof(databuf); ++i) in test() 188 databuf[i] = fill[i % sizeof(fill)]; in test() 199 test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) sizeof(databuf)); in test()
|
/external/libxml2/os400/iconv/bldcsndfa/ |
D | bldcsndfa.c | 376 byte * databuf; in loadXMLFile() local 384 databuf = malloc(sbuf.st_size + 4); in loadXMLFile() 386 if (!databuf) in loadXMLFile() 396 free((char *) databuf); in loadXMLFile() 400 i = read(fd, (char *) databuf, sbuf.st_size); in loadXMLFile() 404 free((char *) databuf); in loadXMLFile() 408 databuf[i] = databuf[i + 1] = databuf[i + 2] = databuf[i + 3] = 0; in loadXMLFile() 409 doc = xmlParseMemory((xmlChar *) databuf, i); in loadXMLFile() 410 free((char *) databuf); in loadXMLFile()
|
/external/libevent/include/event2/ |
D | http.h | 419 const char *reason, struct evbuffer *databuf); 454 struct evbuffer *databuf);
|
/external/libevent/ |
D | http.c | 2833 evhttp_send(struct evhttp_request *req, struct evbuffer *databuf) in evhttp_send() argument 2848 if (databuf != NULL) in evhttp_send() 2849 evbuffer_add_buffer(req->output_buffer, databuf); in evhttp_send() 2859 struct evbuffer *databuf) in evhttp_send_reply() argument 2863 evhttp_send(req, databuf); in evhttp_send_reply() 2894 evhttp_send_reply_chunk_with_cb(struct evhttp_request *req, struct evbuffer *databuf, in evhttp_send_reply_chunk_with_cb() argument 2905 if (evbuffer_get_length(databuf) == 0) in evhttp_send_reply_chunk_with_cb() 2911 (unsigned)evbuffer_get_length(databuf)); in evhttp_send_reply_chunk_with_cb() 2913 evbuffer_add_buffer(output, databuf); in evhttp_send_reply_chunk_with_cb() 2921 evhttp_send_reply_chunk(struct evhttp_request *req, struct evbuffer *databuf) in evhttp_send_reply_chunk() argument [all …]
|
/external/mtools/ |
D | scsi.c | 293 sc.databuf = data; in scsi_cmd()
|