Searched defs:rope (Results 1 - 4 of 4) sorted by relevance

/external/qemu/telephony/
H A Dgsm.c223 gsm_rope_init( GsmRope rope )
225 rope->data = NULL;
226 rope->pos = 0;
227 rope->max = 0;
228 rope->error = 0;
232 gsm_rope_init_alloc( GsmRope rope, int count ) argument
234 rope->data = rope->data0;
235 rope->pos = 0;
236 rope
268 gsm_rope_done_acquire( GsmRope rope, int *psize ) argument
283 gsm_rope_ensure( GsmRope rope, int new_count ) argument
308 gsm_rope_can_grow( GsmRope rope, int count ) argument
326 gsm_rope_add_c( GsmRope rope, char c ) argument
335 gsm_rope_add( GsmRope rope, const void* buf, int buflen ) argument
344 gsm_rope_reserve( GsmRope rope, int count ) argument
[all...]
H A Dsms.c276 gsm_rope_add_timestamp( GsmRope rope, const SmsTimeStampRec* ts ) argument
278 gsm_rope_add( rope, ts->data, 7 );
455 gsm_rope_add_address( GsmRope rope, const SmsAddressRec* addr ) argument
457 gsm_rope_add_c( rope, addr->len );
458 gsm_rope_add_c( rope, addr->toa );
459 gsm_rope_add( rope, addr->data, (addr->len+1)/2 );
461 if (!rope->error && rope->data != NULL)
462 rope->data[ rope
919 GsmRopeRec rope[1]; local
951 GsmRopeRec rope[1]; local
1097 gsm_rope_add_sms_user_header( GsmRope rope, int ref_number, int pdu_count, int pdu_index ) argument
1112 gsm_rope_add_sms_deliver_pdu( GsmRope rope, cbytes_t utf8, int utf8len, int use_gsm7, const SmsAddressRec* sender_address, const SmsTimeStampRec* timestamp, int ref_num, int pdu_count, int pdu_index) argument
1201 GsmRopeRec rope[1]; local
[all...]
/external/stlport/stlport/stl/
H A D_rope.c59 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>* __r, size_t __pos)
64 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>& __r, size_t __pos):
133 // Set path and buffer inside a rope iterator. We assume that
364 # define __RopeLeaf__ _STLP_TYPENAME_ON_RETURN_TYPE rope<_CharT,_Alloc>::_RopeLeaf
365 # define __RopeRep__ _STLP_TYPENAME_ON_RETURN_TYPE rope<_CharT,_Alloc>::_RopeRep
369 void rope<_CharT, _Alloc>::_M_throw_out_of_range() const {
370 __stl_throw_out_of_range("rope");
373 // Concatenate a C string onto a leaf rope by copying the rope data.
377 rope<_Char
851 _S_io_get(basic_ostream<_CharT, _Traits>& __o, const rope<_CharT, _Alloc>& __r, const __true_type& ) argument
873 _S_io_get(basic_ostream<_CharT, _Traits>& __o, const rope<_CharT, _Alloc>& __r, const __false_type& ) argument
889 operator(basic_ostream<_CharT, _Traits>& __o, const rope<_CharT, _Alloc>& __r) argument
[all...]
H A D_rope.h27 // rope<_CharT,_Alloc> is a sequence of _CharT.
91 template<class _CharT, _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_CharT>) > class rope;
122 : public binary_function<rope<_CharT,_Alloc>, rope<_CharT,_Alloc>,
123 rope<_CharT,_Alloc> > {
124 rope<_CharT,_Alloc> operator() (const rope<_CharT,_Alloc>& __x, argument
125 const rope<_CharT,_Alloc>& __y) {
132 rope<_CharT,_Alloc>
134 { return rope<_Char
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) argument
1085 class rope class in inherits:__stlport_class
1285 rope(_RopeRep* __t, const allocator_type& __a = allocator_type()) function in class:rope
1365 rope(const _CharT* __s, const allocator_type& __a = allocator_type()) function in class:rope
1369 rope(const _CharT* __s, size_t __len, function in class:rope
1377 rope(const _CharT *__s, const _CharT *__e, function in class:rope
1382 rope(const const_iterator& __s, const const_iterator& __e, function in class:rope
1388 rope(const iterator& __s, const iterator& __e, function in class:rope
1394 rope(_CharT __c, const allocator_type& __a = allocator_type()) function in class:rope
1407 rope(size_t __n, _CharT __c, function in class:rope
1466 rope(const allocator_type& __a = allocator_type()) function in class:rope
1470 rope(char_producer<_CharT> *__fn, size_t __len, bool __delete_fn, function in class:rope
1477 rope(const _Self& __x) function in class:rope
1483 rope(__move_source<_Self> __src) function in class:rope
2195 operator +(const rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2204 operator +=(rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2212 operator +(const rope<_CharT,_Alloc>& __left, const _CharT* __right) argument
2228 operator +(const rope<_CharT,_Alloc>& __left, _CharT __right) argument
2241 operator <(const rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2248 operator ==(const rope<_CharT,_Alloc>& __left, const rope<_CharT,_Alloc>& __right) argument
2257 operator !=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2263 operator >(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2269 operator <=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2275 operator >=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
[all...]

Completed in 153 milliseconds