| /PHP_5_3/ext/dom/ |
| H A D | documenttype.c | 192 xmlOutputBuffer *buff = NULL; local 204 buff = xmlAllocOutputBuffer(NULL); 205 if (buff != NULL) { 206 xmlNodeDumpOutput (buff, NULL, (xmlNodePtr) intsubset, 0, 0, NULL); 207 xmlOutputBufferFlush(buff); 209 ZVAL_STRINGL(*retval, xmlOutputBufferGetContent(buff), xmlOutputBufferGetSize(buff), 1); 211 ZVAL_STRINGL(*retval, buff->buffer->content, buff->buffer->use, 1); 213 (void)xmlOutputBufferClose(buff); [all...] |
| /PHP_5_3/ext/oci8/ |
| H A D | oci8_collection.c | 465 oratext buff[1024]; local 503 PHP_OCI_CALL_RETURN(connection->errcode, OCIDateToText, (connection->err, element, 0, 0, 0, 0, &buff_len, buff)); 512 ZVAL_STRINGL(*result_element, (char *)buff, buff_len, 1);
|
| H A D | oci8_statement.c | 928 oratext buff[1024]; local 931 memset((void*)buff,0,sizeof(buff)); 934 PHP_OCI_CALL_RETURN(connection->errcode, OCIDateToText, (connection->err, &(((OCIDate *)(bind->array.elements))[i]), 0, 0, 0, 0, &buff_len, buff)); 942 ZVAL_STRINGL(*entry, (char *)buff, buff_len, 1); 946 PHP_OCI_CALL_RETURN(connection->errcode, OCIDateToText, (connection->err, &(((OCIDate *)(bind->array.elements))[i]), 0, 0, 0, 0, &buff_len, buff)); 952 add_next_index_stringl(bind->zval, (char *)buff, buff_len, 1);
|
| /PHP_5_3/ext/standard/ |
| H A D | link.c | 60 char buff[MAXPATHLEN]; local 79 ret = php_sys_readlink(link, buff, MAXPATHLEN-1); 86 buff[ret] = '\0'; 88 RETURN_STRING(buff, 1);
|
| H A D | file.c | 2471 char buff[META_DEF_BUFSIZE + 1]; local 2473 memset((void *)buff, 0, META_DEF_BUFSIZE + 1); 2506 buff[(md->token_len)++] = ch; 2522 memcpy(md->token_data, buff, md->token_len+1); 2540 buff[(md->token_len)++] = ch; 2542 buff[(md->token_len)++] = ch; 2556 memcpy(md->token_data, buff, md->token_len+1);
|
| H A D | streamsfuncs.c | 1406 size_t buff; local 1415 buff = arg2; 1417 /* if buff is 0 then set to non-buffered */ 1418 if (buff == 0) { 1421 ret = php_stream_set_option(stream, PHP_STREAM_OPTION_WRITE_BUFFER, PHP_STREAM_BUFFER_FULL, &buff); 1435 size_t buff; local 1444 buff = arg2; 1446 /* if buff is 0 then set to non-buffered */ 1447 if (buff == 0) { 1450 ret = php_stream_set_option(stream, PHP_STREAM_OPTION_READ_BUFFER, PHP_STREAM_BUFFER_FULL, &buff); [all...] |
| /PHP_5_3/main/ |
| H A D | rfc1867.c | 864 char buff[FILLUNIT]; local 1060 blen = multipart_buffer_read(mbuff, buff, sizeof(buff), &end TSRMLS_CC); 1083 event_file_data.data = buff; 1103 wlen = write(fd, buff, blen); 1123 blen = multipart_buffer_read(mbuff, buff, sizeof(buff), &end TSRMLS_CC);
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd.c | 1294 char buff[MYSQLND_MAX_ALLOWED_DB_LEN * 2 + 1 + 1], *p; local 1300 p = buff; 1315 if (PASS != conn->m->simple_command(conn, COM_FIELD_LIST, buff, p - buff, 1554 char buff[4]; local 1559 int4store(buff, pid); 1563 ret = conn->m->simple_command(conn, COM_PROCESS_KILL, buff, 4, PROT_OK_PACKET, FALSE, TRUE TSRMLS_CC); 1569 } else if (PASS == (ret = conn->m->simple_command(conn, COM_PROCESS_KILL, buff, 4, PROT_LAST, FALSE, TRUE TSRMLS_CC))) {
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_directory.c | 1235 char buff[MAXPATHLEN]; local 1258 ret = php_sys_readlink(expanded_path, buff, MAXPATHLEN - 1); 1260 ret = php_sys_readlink(intern->file_name, buff, MAXPATHLEN-1); 1271 buff[ret] = '\0'; 1273 RETVAL_STRINGL(buff, ret, 1); 1286 char buff[MAXPATHLEN]; local 1307 if (filename && VCWD_REALPATH(filename, buff)) { 1309 if (VCWD_ACCESS(buff, F_OK)) { 1313 RETVAL_STRING(buff, 1);
|
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcre_study.c | 566 pcre_uchar buff[6]; local 568 (void)PRIV(ord2utf)(c, buff); 569 SET_BIT(buff[0]); 650 pcre_uchar buff[6]; local 651 (void)PRIV(ord2utf)(c, buff); 652 SET_BIT(buff[0]);
|
| /PHP_5_3/ext/gd/ |
| H A D | gd.c | 2453 char *buff; local 2456 buff_size = php_stream_copy_to_mem(stream, &buff, PHP_STREAM_COPY_ALL, 1); 2463 io_ctx = gdNewDynamicCtxEx(buff_size, buff, 0); 2465 pefree(buff, 1); 2480 pefree(buff, 1);
|