/PHP-5.5/ext/odbc/ |
H A D | php_odbc.c | 135 ZEND_ARG_INFO(0, field) 2057 char *field; in PHP_FUNCTION() local 2071 field = NULL; in PHP_FUNCTION() 2092 if (field != NULL) { in PHP_FUNCTION() 2171 efree(field); in PHP_FUNCTION() 2176 efree(field); in PHP_FUNCTION() 2179 efree(field); in PHP_FUNCTION() 2210 field = emalloc(fieldsize); in PHP_FUNCTION() 2218 efree(field); in PHP_FUNCTION() 2223 efree(field); in PHP_FUNCTION() [all …]
|
/PHP-5.5/ext/standard/tests/streams/ |
H A D | stream_get_meta_data_socket_variation1.phpt | 2 Testing stream_get_meta_data() "unread_bytes" field on a udp socket
|
H A D | stream_get_meta_data_file_variation2.phpt | 2 Testing stream_get_meta_data() "unread_bytes" field
|
/PHP-5.5/ext/standard/ |
H A D | file.c | 1814 #define FPUTCSV_FLD_CHK(c) memchr(Z_STRVAL(field), c, Z_STRLEN(field)) 1882 zval **field_tmp = NULL, field; in php_fputcsv() local 1889 field = **field_tmp; in php_fputcsv() 1892 zval_copy_ctor(&field); in php_fputcsv() 1893 convert_to_string(&field); in php_fputcsv() 1905 char *ch = Z_STRVAL(field); in php_fputcsv() 1906 char *end = ch + Z_STRLEN(field); in php_fputcsv() 1923 smart_str_appendl(&csvline, Z_STRVAL(field), Z_STRLEN(field)); in php_fputcsv() 1932 zval_dtor(&field); in php_fputcsv()
|
/PHP-5.5/ext/mysqli/tests/ |
H A D | mysqli_stmt_attr_set.phpt | 86 …printf("[007] max_length should be not set (= 0), got %s for field %s\n", $meta->max_length, $meta… 106 …printf("[008] max_length should be set (!= 0), got %s for field %s\n", $meta->max_length, $meta->n… 126 …printf("[009] max_length should not be set (= 0), got %s for field %s\n", $meta->max_length, $meta…
|
H A D | mysqli_stmt_datatype_change.phpt | 84 %unicode|string%(34) "Unknown column 'a' in 'field list'"
|
/PHP-5.5/ext/mysql/tests/ |
H A D | mysql_fetch_field.phpt | 141 printf("Fetch field from mysql_list_fields result set.\n"); 218 Warning: mysql_fetch_field(): Bad field offset in %s on line %d 249 Fetch field from mysql_list_fields result set.
|
H A D | mysql_result.phpt | 15 // string mysql_result ( resource result, int row [, mixed field] )
|
/PHP-5.5/ext/standard/tests/file/ |
H A D | fscanf.phpt | 98 Warning: fscanf(): Different numbers of variable names and field specifiers in %s on line %d
|
H A D | fscanf_error.phpt | 76 Warning: fscanf(): Different numbers of variable names and field specifiers in %s on line %d
|
H A D | fgetcsv_variation13.phpt | 11 /* Testing fgetcsv() to read a line from a file which doesn't have any CSV field */
|
/PHP-5.5/ |
H A D | UPGRADING.INTERNALS | 44 * Removed execute_data->Ts field. The VM temporary variables always allocated 51 * Removed execute_data->CVs field. The VM compiled variables always allocated
|
H A D | README.STREAMS | 308 The stream has a field called abstract that you can use to hold this data. 309 If you need to store more than a single field of data, define a structure to 373 and free the resources you allocated for the abstract field. In the case of 376 You may read the stream->persistent field to determine if your struct was
|
H A D | README.NEW-OUTPUT-API | 121 pointer to the opaque field of the output handler context
|
/PHP-5.5/ext/iconv/tests/ |
H A D | iconv_mime_decode_variation1.phpt | 11 * Description: Decodes a mime header field
|
H A D | iconv_mime_decode_variation2.phpt | 11 * Description: Decodes a mime header field
|
H A D | iconv_mime_decode_variation3.phpt | 11 * Description: Decodes a mime header field
|
/PHP-5.5/ext/pcntl/tests/ |
H A D | 002.phpt | 54 * "sigprocmask: unknown 'how' field 2147483647"
|
/PHP-5.5/ext/pdo_mysql/tests/ |
H A D | bug_44707.phpt | 2 Bug #44707 (The MySQL PDO driver resets variable content after bindParam on tinyint field)
|
/PHP-5.5/sapi/thttpd/ |
H A D | thttpd.c | 307 #define CONDADD(name, field) \ in sapi_thttpd_register_variables() argument 308 if (TG(hc)->field[0]) { \ in sapi_thttpd_register_variables() 309 php_register_variable(#name, TG(hc)->field, track_vars_array TSRMLS_CC); \ in sapi_thttpd_register_variables()
|
/PHP-5.5/ext/mssql/ |
H A D | php_mssql.c | 111 ZEND_ARG_INFO(0, field) 1847 zval **field, *mssql_result_index; local 1852 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlZ", &mssql_result_index, &row, &field) == … 1863 switch(Z_TYPE_PP(field)) { 1868 if (!strcasecmp(result->fields[i].name, Z_STRVAL_PP(field))) { 1874 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s field not found in result", Z_STRVAL_PP(field)); 1880 convert_to_long_ex(field); 1881 field_offset = Z_LVAL_PP(field);
|
/PHP-5.5/ext/sybase_ct/ |
H A D | php_sybase_ct.c | 132 ZEND_ARG_INFO(0, field) 2041 zval *field; in PHP_FUNCTION() local 2047 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlz", &sybase_result_index, &row, &field) ==… in PHP_FUNCTION() 2062 switch(Z_TYPE_P(field)) { in PHP_FUNCTION() 2067 if (strcasecmp(result->fields[i].name, Z_STRVAL_P(field)) == 0) { in PHP_FUNCTION() 2073 …rror_docref(NULL TSRMLS_CC, E_WARNING, "Sybase: %s field not found in result", Z_STRVAL_P(field)); in PHP_FUNCTION() 2079 convert_to_long(field); in PHP_FUNCTION() 2080 field_offset = Z_LVAL_P(field); in PHP_FUNCTION()
|
/PHP-5.5/ext/pgsql/ |
H A D | README | 208 Update table using values (field=>value) and ids (id=>value) 224 Unescape bytea field data
|
/PHP-5.5/ext/interbase/tests/ |
H A D | 003.phpt | 128 /* check for correct handling of duplicate field names */
|
/PHP-5.5/sapi/fpm/fpm/ |
H A D | fpm_conf.c | 55 #define GO(field) offsetof(struct fpm_global_config_s, field) argument 56 #define WPO(field) offsetof(struct fpm_worker_pool_config_s, field) argument
|