Lines Matching refs:keyLen
200 static int add_variable( const char * pKey, int keyLen, const char * pValue, int valLen, in add_variable() argument
307 static int add_variable_magic_quote( const char * pKey, int keyLen, const char * pValue, int valLen… in add_variable_magic_quote() argument
319 …zend_symtable_update( symtable1, pKey1, keyLen + 1, &gpc_element, sizeof( zval *), (void **) &gpc_… in add_variable_magic_quote()
321 …zend_hash_update( symtable1, pKey1, keyLen + 1, &gpc_element, sizeof( zval *), (void **) &gpc_elem… in add_variable_magic_quote()
615 static int alter_ini( const char * pKey, int keyLen, const char * pValue, int valLen, in alter_ini() argument
628 --keyLen; in alter_ini()
629 if (( keyLen == 7 )&&( strncasecmp( pKey, "engine", 6 )== 0 )) in alter_ini()
637 psKey = STR_INIT( pKey, keyLen, 1 ); in alter_ini()
643 zend_alter_ini_entry((char *)pKey, keyLen, in alter_ini()
1196 static int add_associate_array( const char * pKey, int keyLen, const char * pValue, int valLen, in add_associate_array() argument
1199 add_assoc_string_ex( (zval *)arg, (char *)pKey, keyLen+1, (char *)pValue in add_associate_array()