| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regsyntax.c | 209 unsigned int what, OnigCodePoint code) 211 switch (what) { 208 onig_set_meta_char(OnigEncoding enc, unsigned int what, OnigCodePoint code) argument
|
| /PHP_5_3/ext/curl/ |
| H A D | interface.c | 1896 void * what; local 1898 what = zend_fetch_resource(zvalue TSRMLS_CC, -1, "File-Handle", &type, 1, php_file_le_stream(), php_file_le_pstream()); 1899 if (!what) { 1904 if (FAILURE == php_stream_cast((php_stream *) what, PHP_STREAM_AS_STDIO, (void *) &fp, REPORT_ERRORS)) { 1917 if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what)->mode[1] == '+') { 1932 if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what)->mode[1] == '+') { 1956 if (((php_stream *) what)->mode[0] != 'r' || ((php_stream *) what) [all...] |
| /PHP_5_3/ext/fileinfo/ |
| H A D | fileinfo.c | 423 zval *what; local 432 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &what) == FAILURE) { 436 switch (Z_TYPE_P(what)) { 438 buffer = Z_STRVAL_P(what); 439 buffer_len = Z_STRLEN_P(what); 488 php_stream_from_zval_no_verify(stream, &what);
|
| /PHP_5_3/ext/openssl/ |
| H A D | openssl.c | 1147 void * what; local 1150 what = zend_fetch_resource(val TSRMLS_CC, -1, "OpenSSL X.509", &type, 1, le_x509); 1151 if (!what) { 1159 return (X509*)what; 2178 void * what; local 2181 what = zend_fetch_resource(val TSRMLS_CC, -1, "OpenSSL X.509 CSR", &type, 1, le_csr); 2182 if (what) { 2186 return (X509_REQ*)what; 2639 void * what; local 2642 what [all...] |
| /PHP_5_3/ext/pdo_oci/ |
| H A D | oci_driver.c | 60 ub4 _oci_error(OCIError *err, pdo_dbh_t *dbh, pdo_stmt_t *stmt, char *what, sword status, int isinit, const char *file, int line TSRMLS_DC) /* {{{ */ argument 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);
|
| /PHP_5_3/ext/pdo_odbc/ |
| H A D | odbc_driver.c | 48 einfo->what, einfo->last_error, 59 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const char *file, int line TSRMLS_DC) /* {{{ */ argument 102 einfo->what = what; 108 *pdo_err, what, einfo->last_error, einfo->last_err_msg); local 212 H->einfo.what = S->einfo.what; 348 H->einfo.what = "setAttribute";
|
| H A D | php_pdo_odbc_int.h | 124 const char *file, *what; member in struct:__anon145 170 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const char *file, int line TSRMLS_DC); 171 #define pdo_odbc_drv_error(what) pdo_odbc_error(dbh, NULL, SQL_NULL_HSTMT, what, __FILE__, __LINE__ TSRMLS_CC) 172 #define pdo_odbc_stmt_error(what) pdo_odbc_error(stmt->dbh, stmt, SQL_NULL_HSTMT, what, __FILE__, __LINE__ TSRMLS_CC) 173 #define pdo_odbc_doer_error(what) pdo_odbc_error(dbh, NULL, stmt, what, __FILE__, __LINE__ TSRMLS_CC)
|
| /PHP_5_3/ext/readline/ |
| H A D | readline.c | 221 char *what = NULL; local 226 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sZ", &what, &what_len, &value) == FAILURE) { 230 if (!what) { 248 if (!strcasecmp(what,"line_buffer")) { 256 } else if (!strcasecmp(what, "point")) { 258 } else if (!strcasecmp(what, "end")) { 261 } else if (!strcasecmp(what, "mark")) { 263 } else if (!strcasecmp(what, "done")) { 270 } else if (!strcasecmp(what, "pending_input")) { 277 } else if (!strcasecmp(what, "promp [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | assert.c | 239 /* {{{ proto mixed assert_options(int what [, mixed value]) 244 long what; local 248 if (zend_parse_parameters(ac TSRMLS_CC, "l|Z", &what, &value) == FAILURE) { 252 switch (what) { 308 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown value %ld", what);
|
| H A D | string.c | 716 * what indicates which chars are to be trimmed. NULL->default (' \t\n\r\v\0') 718 PHPAPI char *php_trim(char *c, int len, char *what, int what_len, zval *return_value, int mode TSRMLS_DC) argument 724 if (what) { 725 php_charmask((unsigned char*)what, what_len, mask TSRMLS_CC); 766 char *what = NULL; local 769 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &str, &str_len, &what, &what_len) == FAILURE) { 773 php_trim(str, str_len, what, what_len, return_value, mode TSRMLS_CC); 3025 char *str, *what; local 3028 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &str, &str_len, &what, &what_len) == FAILURE) { 3040 Z_STRVAL_P(return_value) = php_addcslashes(str, str_len, &Z_STRLEN_P(return_value), 0, what, what_le 3183 php_addcslashes(char *str, int length, int *new_length, int should_free, char *what, int wlength TSRMLS_DC) argument [all...] |
| H A D | file.c | 1222 void *what; local 1228 what = zend_fetch_resource(&file_handle TSRMLS_CC, -1, "File-Handle", &type, 2, php_file_le_stream(), php_file_le_pstream()); 1230 /* we can't do a ZEND_VERIFY_RESOURCE(what), otherwise we end up 1233 if (!what) { 1240 buf = php_stream_get_line((php_stream *) what, NULL, 0, &len);
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 1075 char *what = class_type->ce_flags & ZEND_ACC_INTERFACE ? "interface" : "abstract class"; local 1076 zend_error(E_ERROR, "Cannot instantiate %s %s", what, class_type->name); 2807 fcc->calling_scope = Z_OBJCE_PP(obj); /* TBFixed: what if it's overloaded? */ 2865 zend_class_entry *ce = Z_OBJCE_P(callable); /* TBFixed: what if it's overloaded? */
|
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcre_config.c | 55 * Return info about what features are configured * 62 what what information is required 70 pcre_config(int what, void *where) argument 73 pcre16_config(int what, void *where) 76 pcre32_config(int what, void *where) 79 switch (what)
|
| H A D | pcre_fullinfo.c | 62 what what information is required 71 int what, void *where) 75 int what, void *where) 79 int what, void *where) 103 switch (what) 70 pcre_fullinfo(const pcre *argument_re, const pcre_extra *extra_data, int what, void *where) argument
|
| /PHP_5_3/ext/date/ |
| H A D | php_date.c | 333 ZEND_ARG_INFO(0, what) 3934 static int check_id_allowed(char *id, long what) argument 3936 if (what & PHP_DATE_TIMEZONE_GROUP_AFRICA && strncasecmp(id, "Africa/", 7) == 0) return 1; 3937 if (what & PHP_DATE_TIMEZONE_GROUP_AMERICA && strncasecmp(id, "America/", 8) == 0) return 1; 3938 if (what & PHP_DATE_TIMEZONE_GROUP_ANTARCTICA && strncasecmp(id, "Antarctica/", 11) == 0) return 1; 3939 if (what & PHP_DATE_TIMEZONE_GROUP_ARCTIC && strncasecmp(id, "Arctic/", 7) == 0) return 1; 3940 if (what & PHP_DATE_TIMEZONE_GROUP_ASIA && strncasecmp(id, "Asia/", 5) == 0) return 1; 3941 if (what & PHP_DATE_TIMEZONE_GROUP_ATLANTIC && strncasecmp(id, "Atlantic/", 9) == 0) return 1; 3942 if (what & PHP_DATE_TIMEZONE_GROUP_AUSTRALIA && strncasecmp(id, "Australia/", 10) == 0) return 1; 3943 if (what 3958 long what = PHP_DATE_TIMEZONE_GROUP_ALL; local [all...] |