| /PHP_5_3/ext/iconv/ |
| H A D | iconv.c | 477 char *out_p, *out_buf, *tmp_buf; 508 tmp_buf = (char*) erealloc(out_buf, bsz+1); 509 out_p = out_buf = tmp_buf; 530 tmp_buf = (char *) erealloc(out_buf, bsz); 532 out_p = out_buf = tmp_buf;
|
| /PHP_5_3/ext/oci8/ |
| H A D | oci8.c | 1074 text tmp_buf[OCI_ERROR_MAXMSG_SIZE]; /* Use traditional smaller size: non-PL/SQL errors should fit and it keeps the stack smaller */ local 1085 && OCIErrorGet(OCI_G(env), (ub4)1, NULL, &ora_error_code, tmp_buf, (ub4)OCI_ERROR_MAXMSG_SIZE, (ub4)OCI_HTYPE_ENV) == OCI_SUCCESS 1086 && *tmp_buf) { 1087 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", tmp_buf); 1114 OCIErrorGet(OCI_G(env), (ub4)1, NULL, &ora_error_code, tmp_buf, (ub4)OCI_ERROR_MAXMSG_SIZE, (ub4)OCI_HTYPE_ERROR); local 1117 int tmp_buf_len = strlen((char *)tmp_buf); 1119 if (tmp_buf_len > 0 && tmp_buf[tmp_buf_len - 1] == '\n') { 1120 tmp_buf[tmp_buf_len - 1] = '\0'; 1124 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Initialization error: OCI_SUCCESS_WITH_INFO: %s", tmp_buf); 1126 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Initialization error: OCI_ERROR: %s", tmp_buf); 2199 text tmp_buf[OCI_ERROR_MAXMSG_SIZE]; local 2202 OCIErrorGet(OCI_G(err), (ub4)1, NULL, &error_code, tmp_buf, (ub4)OCI_ERROR_MAXMSG_SIZE, (ub4)OCI_HTYPE_ERROR); local [all...] |
| /PHP_5_3/ext/pdo_oci/ |
| H A D | oci_driver.c | 63 char tmp_buf[2048]; local 89 slprintf(tmp_buf, sizeof(tmp_buf), "%s (%s:%d)", what, file, line); 90 einfo->errmsg = pestrdup(tmp_buf, dbh->is_persistent); 99 slprintf(tmp_buf, sizeof(tmp_buf), "%s: %s (%s:%d)", what, errbuf, file, line); 100 einfo->errmsg = pestrdup(tmp_buf, dbh->is_persistent); 104 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_SUCCESS_WITH_INFO: %s (%s:%d)", what, errbuf, file, line); 105 einfo->errmsg = pestrdup(tmp_buf, db [all...] |
| /PHP_5_3/ext/wddx/ |
| H A D | wddx.c | 424 char tmp_buf[WDDX_BUF_LEN]; local 430 snprintf(tmp_buf, sizeof(tmp_buf), WDDX_NUMBER, Z_STRVAL(tmp)); 433 php_wddx_add_chunk(packet, tmp_buf); 462 char tmp_buf[WDDX_BUF_LEN]; local 480 snprintf(tmp_buf, WDDX_BUF_LEN, WDDX_VAR_S, PHP_CLASS_NAME_VAR); 481 php_wddx_add_chunk(packet, tmp_buf); 514 snprintf(tmp_buf, WDDX_BUF_LEN, WDDX_VAR_S, PHP_CLASS_NAME_VAR); 515 php_wddx_add_chunk(packet, tmp_buf); 537 key_len = slprintf(tmp_buf, sizeo 563 char tmp_buf[WDDX_BUF_LEN]; local 629 char *tmp_buf; local 774 char tmp_buf[2]; local [all...] |
| /PHP_5_3/main/ |
| H A D | output.c | 439 php_ob_buffer tmp_buf; local 445 tmp_buf.block_size = block_size; 446 tmp_buf.size = initial_size; 447 tmp_buf.buffer = (char *) emalloc(initial_size+1); 448 tmp_buf.text_length = 0; 449 tmp_buf.output_handler = output_handler; 450 tmp_buf.chunk_size = chunk_size; 451 tmp_buf.status = 0; 452 tmp_buf.internal_output_handler = NULL; 453 tmp_buf [all...] |
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_net.c | 703 char tmp_buf[256]; local 715 skipped_bytes += (bytes_consumed = php_stream_read(net->stream, tmp_buf, sizeof(tmp_buf))); 716 } while (bytes_consumed == sizeof(tmp_buf));
|
| H A D | mysqlnd_ps_codec.c | 620 zend_uchar *tmp_buf; local 622 tmp_buf = mnd_emalloc(*buf_len); 623 if (!tmp_buf) { 627 memcpy(tmp_buf, *buf, offset); 631 *buf = tmp_buf; 682 zend_uchar *tmp_buf; local 684 tmp_buf = mnd_emalloc(*buf_len); 685 if (!tmp_buf) { 689 memcpy(tmp_buf, *buf, offset); 693 *buf = tmp_buf; 831 zend_uchar *tmp_buf; local [all...] |
| /PHP_5_3/win32/ |
| H A D | registry.c | 218 char tmp_buf[MAXPATHLEN], *cwd; local 222 if (!VCWD_GETCWD(tmp_buf, MAXPATHLEN)) { 226 cwd = strchr(tmp_buf, ':'); 229 cwd = tmp_buf; 231 drive_letter = tmp_buf[0];
|