| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | fpm_conf.h | 53 char *user; member in struct:fpm_worker_pool_config_s
|
| H A D | fpm_worker_pool.h | 24 char *user, *home; /* for setting env USER and HOME */ member in struct:fpm_worker_pool_s
|
| /PHP_5_3/ext/ftp/ |
| H A D | ftp.c | 242 ftp_login(ftpbuf_t *ftp, const char *user, const char *pass TSRMLS_DC) argument 324 if (!ftp_putcmd(ftp, "USER", user)) {
|
| H A D | php_ftp.c | 416 char *user, *pass; local 419 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rss", &z_ftp, &user, &user_len, &pass, &pass_len) == FAILURE) { 426 if (!ftp_login(ftp, user, pass TSRMLS_CC)) {
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 104 ZEND_ARG_INFO(0, user) 1148 char *mailbox, *user, *passwd; local 1156 if (zend_parse_parameters(argc TSRMLS_CC, "sss|lla", &mailbox, &mailbox_len, &user, &user_len, 1232 IMAPG(imap_user) = estrndup(user, user_len); 1262 /* {{{ proto resource imap_open(string mailbox, string user, string password [, int options [, int n_retries]]) 5061 PHP_IMAP_EXPORT void mm_login(NETMBX *mb, char *user, char *pwd, long trial) argument 5065 if (*mb->user) { 5066 strlcpy (user, mb->user, MAILTMPLEN); 5068 strlcpy (user, IMAP [all...] |
| /PHP_5_3/ext/interbase/ |
| H A D | ibase_service.c | 138 /* user = 0, password = 1, first_name = 2, middle_name = 3, last_name = 4 */ 186 Add a user to security database */ 194 Modify a user in security database */ 202 Delete a user from security database */ 215 char buf[128], *host, *user, *pass, *loc; local 221 &host, &hlen, &user, &ulen, &pass, &plen)) { 229 user, isc_spb_password, (char)plen, pass, host); 248 svm->username = estrdup(user); 363 zval *user; local 373 ALLOC_INIT_ZVAL(user); [all...] |
| /PHP_5_3/ext/mssql/ |
| H A D | php_mssql.c | 541 char *host = NULL, *user = NULL, *passwd = NULL; local 549 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|sssb", &host, &host_len, &user, &user_len, &passwd, &passwd_len, &new_link) == FAILURE) { 558 user[255] = '\0'; 576 hashed_details_length = spprintf(&hashed_details, 0, "mssql_%s_%s_", host, user); 580 hashed_details_length = spprintf(&hashed_details, 0, "mssql_%s_%s_%s", host, user, passwd); 607 if (user) { 608 DBSETLUSER(mssql.login,user);
|
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli_api.c | 391 If the user has called $stmt->store_result() then we have asked 409 the user has called store_result(). if he does not there is no way to determine the 516 /* {{{ proto bool mysqli_change_user(object link, string user, string password, string database) 517 Change logged-in user of the active connection */ 522 char *user, *password, *dbname; local 529 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Osss", &mysql_link, mysqli_link_class_entry, &user, &user_len, &password, &password_len, &dbname, &dbname_len) == FAILURE) { 538 rc = mysql_change_user(mysql->mysql, user, password, dbname); 880 QQ: Isn't it quite better to call zval_dtor(). What if the user has 1378 We create always persistent, as if the user want to connecto 1453 unsets user define [all...] |
| /PHP_5_3/ext/oci8/ |
| H A D | oci8.c | 81 /* For a user friendly message about environment setup */ 2426 * Change password for the user with the username given 2428 int php_oci_password_change(php_oci_connection *connection, char *user, int user_len, char *pass_old, int pass_old_len, char *pass_new, int pass_new_len TSRMLS_DC) argument 2430 PHP_OCI_CALL_RETURN(connection->errcode, OCIPasswordChange, (connection->svc, connection->err, (text *)user, user_len, (text *)pass_old, pass_old_len, (text *)pass_new, pass_new_len, OCI_DEFAULT)); 2747 * cannot use this for other roundtrip calls as there is no way the user can access this error 3087 * user's password has expired, but is still usable. 3216 /* Session creation returns OCI_SUCCESS_WITH_INFO when user's password has expired, but
|
| H A D | oci8_interface.c | 1594 /* {{{ proto resource oci_new_connect(string user, string pass [, string db]) 1602 /* {{{ proto resource oci_connect(string user, string pass [, string db [, string charset [, int session_mode ]]) 1610 /* {{{ proto resource oci_pconnect(string user, string pass [, string db [, string charset ]]) 1909 char *user, *pass_old, *pass_new, *dbname; local 1921 if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "rsss", &z_connection, &user, &user_len, &pass_old, &pass_old_len, &pass_new, &pass_new_len) == SUCCESS) { 1937 if (php_oci_password_change(connection, user, user_len, pass_old, pass_old_len, pass_new, pass_new_len TSRMLS_CC)) { 1941 } else if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "ssss", &dbname, &dbname_len, &user, &user_len, &pass_old, &pass_old_len, &pass_new, &pass_new_len) == SUCCESS) { 1956 connection = php_oci_do_connect_ex(user, user_len, pass_old, pass_old_len, pass_new, pass_new_len, dbname, dbname_len, NULL, OCI_DEFAULT, 0, 0 TSRMLS_CC);
|
| /PHP_5_3/ext/odbc/ |
| H A D | birdstep.c | 55 ZEND_ARG_INFO(0, user) 123 * but should in reality warn the user that this functionality is 285 /* {{{ proto int birdstep_connect(string server, string user, string pass) 289 char *serv, *user, *pass; local 296 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss", &serv, &serv_len, &user, &user_len, &pass, &pass_len) == FAILURE) { 310 stat = SQLConnect(hdbc, serv, SQL_NTS, user, SQL_NTS, pass, SQL_NTS); 312 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Birdstep: Could not connect to server \"%s\" for %s", serv, user);
|
| /PHP_5_3/ext/session/ |
| H A D | mod_user.h | 27 PS_FUNCS(user); variable
|
| /PHP_5_3/ext/soap/ |
| H A D | php_sdl.c | 3231 char *user = php_get_current_user(); local 3232 int user_len = user ? strlen(user) + 1 : 0; 3244 memcpy(key+len, user, user_len-1);
|
| /PHP_5_3/ext/standard/ |
| H A D | filestat.c | 503 zval *user; local 507 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz/", &filename, &filename_len, &user) == FAILURE) { 515 if (Z_TYPE_P(user) == IS_LONG) { 516 uid = (uid_t)Z_LVAL_P(user); 517 } else if (Z_TYPE_P(user) == IS_STRING) { 529 if (getpwnam_r(Z_STRVAL_P(user), &pw, pwbuf, pwbuflen, &retpwptr) != 0 || retpwptr == NULL) { 530 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find uid for %s", Z_STRVAL_P(user)); 537 struct passwd *pw = getpwnam(Z_STRVAL_P(user)); 540 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to find uid for %s", Z_STRVAL_P(user)); 546 php_error_docref(NULL TSRMLS_CC, E_WARNING, "parameter 2 should be string or integer, %s given", zend_zval_type_name(user)); [all...] |
| H A D | url.h | 25 char *user; member in struct:php_url
|
| /PHP_5_3/ext/sybase_ct/ |
| H A D | php_sybase_ct.c | 47 ZEND_ARG_INFO(0, user) 56 ZEND_ARG_INFO(0, user) 629 static int php_sybase_do_connect_internal(sybase_link *sybase, char *host, char *user, char *passwd, char *charset, char *appname TSRMLS_DC) argument 647 if (user) { 648 ct_con_props(sybase->connection, CS_SET, CS_USERNAME, user, CS_NULLTERM, NULL); 731 char *user = NULL, *passwd = NULL, *host = NULL, *charset = NULL, *appname = NULL; local 737 host= user= passwd= charset= appname= NULL; 739 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s!s!s!s!s!", &host, &len, &user, &len, &passwd, &len, &charset, &len, &appname, &len) == FAILURE) { 743 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s!s!s!s!s!b", &host, &len, &user, &len, &passwd, &len, &charset, &len, &appname, &len, &new) == FAILURE) { 752 user [all...] |
| /PHP_5_3/ext/xml/ |
| H A D | compat.c | 50 _start_element_handler(void *user, const xmlChar *name, const xmlChar **attributes) argument 52 XML_Parser parser = (XML_Parser) user; 76 parser->h_default(parser->user, (const XML_Char *) qualified_name, xmlStrlen(qualified_name)); 84 parser->h_start_element(parser->user, (const XML_Char *) qualified_name, (const XML_Char **) attributes); 90 _start_element_handler_ns(void *user, const xmlChar *name, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar ** namespaces, int nb_attributes, int nb_defaulted, const xmlChar ** attributes) argument 92 XML_Parser parser = (XML_Parser) user; 101 parser->h_start_ns(parser->user, (const XML_Char *) namespaces[y], (const XML_Char *) namespaces[y+1]); 164 parser->h_default(parser->user, (const XML_Char *) qualified_name, xmlStrlen(qualified_name)); 190 parser->h_start_element(parser->user, (const XML_Char *) qualified_name, (const XML_Char **) attrs); 205 parser->h_end_ns(parser->user, nspt 210 _end_element_handler(void *user, const xmlChar *name) argument 234 _end_element_handler_ns(void *user, const xmlChar *name, const xmlChar * prefix, const xmlChar *URI) argument 263 _cdata_handler(void *user, const xmlChar *cdata, int cdata_len) argument 278 _pi_handler(void *user, const xmlChar *target, const xmlChar *data) argument 296 _unparsed_entity_decl_handler(void *user, const xmlChar *name, const xmlChar *pub_id, const xmlChar *sys_id, const xmlChar *notation) argument 312 _notation_decl_handler(void *user, const xmlChar *notation, const xmlChar *pub_id, const xmlChar *sys_id) argument 337 _comment_handler(void *user, const xmlChar *comment) argument 363 _external_entity_ref_handler(void *user, const xmlChar *names, int type, const xmlChar *sys_id, const xmlChar *pub_id, xmlChar *content) argument 375 _get_entity(void *user, const xmlChar *name) argument 504 XML_SetUserData(XML_Parser parser, void *user) argument [all...] |
| H A D | expat_compat.h | 66 void *user; member in struct:_XML_Parser
|
| /PHP_5_3/main/ |
| H A D | fopen_wrappers.c | 426 char user[32]; /* to try open the directory */ local 440 if (length > (int)sizeof(user) - 1) { 441 length = sizeof(user) - 1; 443 memcpy(user, path_info + 2, length); 444 user[length] = '\0'; 446 if (getpwnam_r(user, &pwstruc, pwbuf, pwbuflen, &pw)) { 451 pw = getpwnam(user);
|
| H A D | main.c | 545 STD_PHP_INI_ENTRY("user_ini.filename", ".user.ini", PHP_INI_SYSTEM, OnUpdateString, user_ini_filename, php_core_globals, core_globals) 771 * - the user wants to see the links anyway 2395 char *user; local 2397 user = php_base64_decode(auth + 6, strlen(auth) - 6, NULL); 2398 if (user) { 2399 pass = strchr(user, ':'); 2402 SG(request_info).auth_user = user; 2406 efree(user);
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_structs.h | 340 typedef enum_func_status (*func_mysqlnd_conn__connect)(MYSQLND *conn, const char *host, const char * user, const char * passwd, unsigned int passwd_len, const char * db, unsigned int db_len, unsigned int port, const char * socket_or_pipe, unsigned int mysql_flags TSRMLS_DC); 360 typedef enum_func_status (*func_mysqlnd_conn__change_user)(MYSQLND * const conn, const char * user, const char * passwd, const char * db, zend_bool silent TSRMLS_DC); 739 char *user; member in struct:st_mysqlnd_connection
|
| H A D | mysqlnd_wireprotocol.h | 94 const char *user; member in struct:st_mysqlnd_packet_auth 99 /* Here the packet ends. This is user supplied data */
|
| H A D | mysqlnd.c | 59 "store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or earlier you might need to remove the old-passwords " 139 if (conn->user) { 140 DBG_INF("Freeing user"); 141 mnd_pefree(conn->user, pers); 142 conn->user = NULL; 434 const char * const user, 460 auth_packet->user = user; 549 const char *host, const char *user, 432 mysqlnd_connect_run_authentication( MYSQLND * conn, const char * const user, const char * const passwd, const char * const db, size_t db_len, const MYSQLND_PACKET_GREET * const greet_packet, const MYSQLND_OPTIONS * const options, unsigned long mysql_flags TSRMLS_DC) argument 858 mysqlnd_connect(MYSQLND * conn, const char *host, const char *user, const char *passwd, unsigned int passwd_len, const char *db, unsigned int db_len, unsigned int port, const char *socket_or_pipe, unsigned int mysql_flags TSRMLS_DC) argument [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_builtin_functions.c | 912 * properties, returned to user */ 1293 Creates an alias for user defined class */ 1325 zend_error(E_WARNING, "First argument of class_alias() must be a name of user defined class"); 1382 Generates a user-level error/warning/notice message */ 1412 Sets a user-defined error handler function. Returns the previously defined error handler, or false on error */ 1442 if (!zend_is_true(error_handler)) { /* unset user-defined handler */ 1484 Sets a user-defined exception handler function. Returns the previously defined exception handler, or false on error */ 1513 if (Z_TYPE_P(exception_handler) == IS_NULL) { /* unset user-defined handler */ 1631 zval *user; local 1638 MAKE_STD_ZVAL(user); [all...] |
| /PHP_5_3/ext/mysql/ |
| H A D | php_mysql.c | 692 char *user=NULL, *passwd=NULL, *host_and_port=NULL, *socket=NULL, *tmp=NULL, *host=NULL; local 735 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "SQL safe mode in effect - ignoring host/user/password information"); 738 user=php_get_current_user(); 739 hashed_details_length = spprintf(&hashed_details, 0, "mysql__%s_", user); 745 &user, &user_len, &passwd, &passwd_len, 751 &user, &user_len, &passwd, &passwd_len, 760 if (!user) { 761 user = MySG(default_user); 783 hashed_details_length = spprintf(&hashed_details, 0, "mysql_%s_%s_%s_%ld", SAFE_STRING(host_and_port), SAFE_STRING(user), SAFE_STRING(passwd), client_flags); 853 if (mysql_real_connect(mysql->conn, host, user, passw [all...] |