Lines Matching refs:zstr
189 zval* zstr = NULL; in collator_convert_zstr_utf8_to_utf16() local
203 zstr = rv; in collator_convert_zstr_utf8_to_utf16()
204 ZVAL_STRINGL( zstr, (char*)ustr, UBYTES(ustr_len)); in collator_convert_zstr_utf8_to_utf16()
208 return zstr; in collator_convert_zstr_utf8_to_utf16()
217 zval* zstr = NULL; in collator_convert_object_to_string() local
231 zstr = Z_OBJ_HT_P(obj)->get( obj, rv ); in collator_convert_object_to_string()
233 switch( Z_TYPE_P( zstr ) ) in collator_convert_object_to_string()
238 zval_ptr_dtor( zstr ); in collator_convert_object_to_string()
247 convert_to_string( zstr ); in collator_convert_object_to_string()
253 zstr = rv; in collator_convert_object_to_string()
255 if( Z_OBJ_HT_P(obj)->cast_object( obj, zstr, IS_STRING ) == FAILURE ) in collator_convert_object_to_string()
258 zval_ptr_dtor( zstr ); in collator_convert_object_to_string()
264 if( zstr == NULL ) in collator_convert_object_to_string()
272 Z_STRVAL_P( zstr ), Z_STRLEN_P( zstr ), in collator_convert_object_to_string()
278 zval_dtor( zstr ); in collator_convert_object_to_string()
281 ZVAL_STRINGL( zstr, (char*)ustr, UBYTES(ustr_len)); in collator_convert_object_to_string()
289 return zstr; in collator_convert_object_to_string()