| /PHP_TRUNK/ext/intl/common/ |
| H A D | common_date.cpp | 75 id_len = slprintf(id, sizeof(offset_id), "GMT%+03d:%02d",
|
| /PHP_TRUNK/ext/exif/ |
| H A D | exif.c | 1051 p += slprintf(buf+p, sizeof(buf)-p, "\nDump Len: %08X (%d)", len, len); 1055 p += slprintf(buf+p, sizeof(buf)-p, "\n%08X: ", i+offset); 1059 p += slprintf(buf+p, sizeof(buf)-p, "%02X ", c); 1063 p += slprintf(buf+p, sizeof(buf)-p, " "); 1066 p += slprintf(buf+p, sizeof(buf)-p, " %s", tmp);
|
| /PHP_TRUNK/ext/ftp/ |
| H A D | ftp.c | 1118 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); 1124 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s\r\n", cmd);
|
| /PHP_TRUNK/ext/imap/ |
| H A D | php_imap.c | 3935 offset += slprintf(bufferTo + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); 3964 offset += slprintf(bufferCc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); 3990 offset += slprintf(bufferBcc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host);
|
| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_query.c | 1339 l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d", *(ISC_INT64 *) data); 1345 l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, n % f); 1347 l = slprintf(string_data, sizeof(string_data), "%" LL_MASK "d.%0*" LL_MASK "d", n / f, -scale, -n % f); 1349 l = slprintf(string_data, sizeof(string_data), "-0.%0*" LL_MASK "d", -scale, -n % f); 1364 l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, n % f); 1366 l = slprintf(string_data, sizeof(string_data), "%ld.%0*ld", n / f, -scale, -n % f); 1368 l = slprintf(string_data, sizeof(string_data), "-0.%0*ld", -scale, -n % f); 1408 l = slprintf(string_data, sizeof(string_data), "%02d/%02d/%4d %02d:%02d:%02d", t.tm_mon+1, t.tm_mday, 1412 l = slprintf(string_data, sizeof(string_data), "%02d/%02d/%4d", t.tm_mon + 1, t.tm_mday, t.tm_year+1900); 1415 l = slprintf(string_dat [all...] |
| H A D | ibase_service.c | 163 int chunk = slprintf(&buf[spb_len], sizeof(buf) - spb_len, "%c%c%c%s", 227 spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c%s" "%s:service_mgr", 444 spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c%c%s%c%c%c%c%c", 546 spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c%c%c%c", 555 spb_len = slprintf(buf, sizeof(buf), "%c%c%c%c%s%c%c",
|
| H A D | interbase.c | 871 dpb_len = slprintf(dpb, buf_len, "%c%c%s", dpb_args[i],(unsigned char)len[i],args[i]); 877 dpb_len = slprintf(dpb, buf_len, "%c\2%c%c", isc_dpb_num_buffers, 883 dpb_len = slprintf(dpb, buf_len, "%c\1%c", isc_dpb_force_write, largs[SYNC] == isc_spb_prp_wm_sync ? 1 : 0);
|
| /PHP_TRUNK/ext/pdo_firebird/ |
| H A D | firebird_driver.c | 672 dpb_len = slprintf(dpb, buf_len, "%c%c%s", dpb_flags[i], (unsigned char)strlen(dpb_values[i]),
|
| H A D | firebird_statement.c | 345 *len = slprintf(*ptr, CHAR_BUF_LEN, "%" LL_MASK "d.%0*" LL_MASK "d", 348 *len = slprintf(*ptr, CHAR_BUF_LEN, "%" LL_MASK "d.%0*" LL_MASK "d", 351 *len = slprintf(*ptr, CHAR_BUF_LEN, "-0.%0*" LL_MASK "d", -var->sqlscale, -n % f); 368 *len = slprintf(*ptr, CHAR_BUF_LEN, "%d", *(short*)var->sqldata); 372 *len = slprintf(*ptr, CHAR_BUF_LEN, "%ld", *(ISC_LONG*)var->sqldata); 376 *len = slprintf(*ptr, CHAR_BUF_LEN, "%" LL_MASK "d", *(ISC_INT64*)var->sqldata); 380 *len = slprintf(*ptr, CHAR_BUF_LEN, "%F", *(float*)var->sqldata); 384 *len = slprintf(*ptr, CHAR_BUF_LEN, "%F" , *(double*)var->sqldata);
|
| /PHP_TRUNK/ext/session/ |
| H A D | mod_mm.c | 273 if (!(euid_len = slprintf(euid, sizeof(euid), "%d", geteuid()))) {
|
| H A D | session.c | 1034 n = slprintf(buf, sizeof(buf), "%s, %02d %s %d %02d:%02d:%02d GMT", /* SAFE */
|
| /PHP_TRUNK/main/ |
| H A D | SAPI.c | 898 http_status_line.header_len = slprintf(buf, sizeof(buf), "HTTP/1.0 %d X", SG(sapi_headers).http_response_code);
|
| H A D | snprintf.h | 24 Comparing: sprintf, snprintf, slprintf, spprintf 42 slprintf same as snprintf with the difference that it actually returns the 94 #ifdef slprintf 95 #undef slprintf macro 97 #define slprintf ap_php_slprintf macro
|
| /PHP_TRUNK/sapi/nsapi/ |
| H A D | nsapi.c | 717 slprintf(buf, sizeof(buf), "%d", conf_getglobals()->Vport); 773 slprintf(buf, sizeof(buf), "%d", rc->http_error);
|
| /PHP_TRUNK/sapi/tux/ |
| H A D | php_tux.c | 119 len = slprintf(status_line, 30, "HTTP/1.1 %d NA\r\n", SG(sapi_headers).http_response_code); 198 ctr.line_len = slprintf(buf, sizeof(buf), "Server: %s", TUXAPI_version);
|
| /PHP_TRUNK/ext/pdo_oci/ |
| H A D | oci_driver.c | 89 slprintf(tmp_buf, sizeof(tmp_buf), "%s (%s:%d)", what, file, line); 99 slprintf(tmp_buf, sizeof(tmp_buf), "%s: %s (%s:%d)", what, errbuf, file, line); 104 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_SUCCESS_WITH_INFO: %s (%s:%d)", what, errbuf, file, line); 108 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_NEED_DATA (%s:%d)", what, file, line); 112 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_NO_DATA (%s:%d)", what, file, line); 116 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_INVALID_HANDLE (%s:%d)", what, file, line); 120 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_STILL_EXECUTING (%s:%d)", what, file, line); 124 slprintf(tmp_buf, sizeof(tmp_buf), "%s: OCI_CONTINUE (%s:%d)", what, file, line); 489 slprintf(verstr, sizeof(verstr), "%d.%d.%d.%d.%d", 510 slprintf(verst [all...] |
| /PHP_TRUNK/ext/intl/calendar/ |
| H A D | calendar_methods.cpp | 1241 ts_str_len = slprintf(ts_str, sizeof(ts_str), "@%I64d", ts);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_directory.c | 2350 intern->file_name_len = slprintf(tmp_fname, sizeof(tmp_fname), "php://temp/maxmemory:%ld", max_memory);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | string.c | 1154 str_len = slprintf(stmp, sizeof(stmp), "%ld", Z_LVAL_PP(tmp));
|
| H A D | http_fopen_wrapper.c | 583 if ((ua_len = slprintf(ua, ua_len, _UA_HEADER, ua_str)) > 0) { 607 scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_PP(tmpzval)); 622 scratch_len = slprintf(scratch, scratch_len, "Content-Length: %d\r\n", Z_STRLEN_PP(tmpzval));
|
| /PHP_TRUNK/sapi/cgi/ |
| H A D | cgi_main.c | 419 len = slprintf(buf, SAPI_CGI_MAX_HEADER_LENGTH, "%s\r\n", SG(sapi_headers).http_status_line); 436 len = slprintf(buf, sizeof(buf), "Status:%s\r\n", s); 459 len = slprintf(buf, sizeof(buf), "Status: %d %s\r\n", SG(sapi_headers).http_response_code, err->msg); 461 len = slprintf(buf, sizeof(buf), "Status: %d\r\n", SG(sapi_headers).http_response_code); 591 len = slprintf(buf, len - 1, "%s=%s", name, value); 597 len = slprintf(buf, len - 1, "%s=", name);
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 410 len = slprintf(buf, SAPI_CGI_MAX_HEADER_LENGTH, "%s\r\n", SG(sapi_headers).http_status_line); 427 len = slprintf(buf, sizeof(buf), "Status:%s\r\n", s); 450 len = slprintf(buf, sizeof(buf), "Status: %d %s\r\n", SG(sapi_headers).http_response_code, err->msg); 452 len = slprintf(buf, sizeof(buf), "Status: %d\r\n", SG(sapi_headers).http_response_code);
|
| /PHP_TRUNK/ext/wddx/ |
| H A D | wddx.c | 319 key_length = slprintf(tmp, sizeof(tmp), "%ld", idx) + 1; 537 key_len = slprintf(tmp_buf, sizeof(tmp_buf), "%ld", idx); 609 key_len = slprintf(tmp_buf, sizeof(tmp_buf), "%ld", idx);
|
| /PHP_TRUNK/ext/hash/ |
| H A D | hash.c | 791 len = slprintf(buf, 127, "MHASH_%s", algorithm.mhash_name, strlen(algorithm.mhash_name)); 1047 s += slprintf(s, e - s, "%s ", str);
|
| /PHP_TRUNK/ext/date/ |
| H A D | php_date.c | 1081 case 'd': length = slprintf(buffer, 32, "%02d", (int) t->d); break; 1082 case 'D': length = slprintf(buffer, 32, "%s", php_date_short_day_name(t->y, t->m, t->d)); break; 1083 case 'j': length = slprintf(buffer, 32, "%d", (int) t->d); break; 1084 case 'l': length = slprintf(buffer, 32, "%s", php_date_full_day_name(t->y, t->m, t->d)); break; 1085 case 'S': length = slprintf(buffer, 32, "%s", english_suffix(t->d)); break; 1086 case 'w': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_week(t->y, t->m, t->d)); break; 1087 case 'N': length = slprintf(buffer, 32, "%d", (int) timelib_iso_day_of_week(t->y, t->m, t->d)); break; 1088 case 'z': length = slprintf(buffer, 32, "%d", (int) timelib_day_of_year(t->y, t->m, t->d)); break; 1093 length = slprintf(buffer, 32, "%02d", (int) isoweek); break; /* iso weeknr */ 1096 length = slprintf(buffe [all...] |