Lines Matching refs:pKey
201 static int add_variable( const char * pKey, int keyLen, const char * pValue, int valLen, in add_variable() argument
209 if (sapi_module.input_filter(filter_arg, (char *)pKey, &new_val, valLen, &new_val_len)) { in add_variable()
210 php_register_variable_safe((char *)pKey, new_val, new_val_len, (zval *)arg ); in add_variable()
780 static int alter_ini( const char * pKey, int keyLen, const char * pValue, int valLen, in alter_ini() argument
787 if ( '\001' == *pKey ) { in alter_ini()
788 ++pKey; in alter_ini()
789 if ( *pKey == 4 ) { in alter_ini()
806 ++pKey; in alter_ini()
808 if (( keyLen == 7 )&&( strncasecmp( pKey, "engine", 6 )== 0 )) in alter_ini()
816 psKey = zend_string_init(pKey, keyLen, 1); in alter_ini()
1652 static int add_associate_array( const char * pKey, int keyLen, const char * pValue, int valLen, in add_associate_array() argument
1655 add_assoc_string_ex((zval *)arg, (char *)pKey, keyLen, (char *)pValue); in add_associate_array()