Searched refs:offp (Results 1 - 22 of 22) sorted by relevance

/external/libunwind/src/ptrace/
H A D_UPT_get_proc_name.c31 char *buf, size_t buf_len, unw_word_t *offp, void *arg)
36 return _Uelf64_get_proc_name (as, ui->pid, ip, buf, buf_len, offp, arg);
38 return _Uelf32_get_proc_name (as, ui->pid, ip, buf, buf_len, offp, arg);
30 _UPT_get_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/coredump/
H A D_UCD_get_proc_name.c34 char *buf, size_t buf_len, unw_word_t *offp)
52 ret = elf_w (get_proc_name_in_image) (as, &ui->edi.ei, segbase, mapoff, ip, buf, buf_len, offp);
59 char *buf, size_t buf_len, unw_word_t *offp, void *arg)
64 return _Uelf64_CD_get_proc_name (ui, as, ip, buf, buf_len, offp);
66 return _Uelf32_CD_get_proc_name (ui, as, ip, buf, buf_len, offp);
33 CD_get_proc_name(struct UCD_info *ui, unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp) argument
58 _UCD_get_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/mi/
H A DGget_proc_name.c50 char *buf, size_t buf_len, unw_word_t *offp, void *arg)
63 if (offp)
64 *offp = ip - pi.start_ip;
93 return (*a->get_proc_name) (as, ip, buf, buf_len, offp, arg);
100 unw_word_t *offp)
104 return get_proc_name (tdep_get_as (c), tdep_get_ip (c), buf, buf_len, offp,
111 size_t buf_len, unw_word_t *offp, void *as_arg)
113 return get_proc_name (as, ip, buf, buf_len, offp, as_arg);
49 get_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
99 unw_get_proc_name(unw_cursor_t *cursor, char *buf, size_t buf_len, unw_word_t *offp) argument
110 unw_get_proc_name_by_ip(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *as_arg) argument
/external/elfutils/libelf/
H A Delf_getarsym.c50 read_number_entries (uint64_t *nump, Elf *elf, size_t *offp, bool index64_p) argument
62 memcpy (&u, elf->map_address + *offp, sizeof u);
63 else if ((size_t) pread_retry (elf->fildes, &u, w, *offp) != w)
66 *offp += w;
/external/libunwind/src/
H A Delfxx.c160 char* buf, size_t buf_len, unw_word_t* offp, Elf_W(Ehdr)* ehdr) {
231 if (offp != NULL) {
232 *offp = ip - val;
313 char* buf, size_t buf_len, unw_word_t* offp) {
373 if (offp != NULL) {
374 *offp = ip - val;
423 char *buf, size_t buf_len, unw_word_t* offp, Elf_W(Ehdr)* ehdr) {
436 return elf_w (lookup_symbol_mapped) (as, ip, ei, load_offset, buf, buf_len, offp);
438 return elf_w (lookup_symbol_memory) (as, ip, ei, load_offset, buf, buf_len, offp, ehdr);
566 unw_word_t ip, char* buf, size_t buf_len, unw_word_t* offp) {
158 lookup_symbol_memory( unw_addr_space_t as, unw_word_t ip, struct elf_image* ei, Elf_W(Addr) load_offset, char* buf, size_t buf_len, unw_word_t* offp, Elf_W(Ehdr)* ehdr) argument
311 lookup_symbol_mapped( unw_addr_space_t as, unw_word_t ip, struct elf_image* ei, Elf_W(Addr) load_offset, char* buf, size_t buf_len, unw_word_t* offp) argument
421 lookup_symbol( unw_addr_space_t as, unw_word_t ip, struct elf_image *ei, Elf_W(Addr) load_offset, char *buf, size_t buf_len, unw_word_t* offp, Elf_W(Ehdr)* ehdr) argument
564 get_proc_name_in_image( unw_addr_space_t as, struct elf_image* ei, unsigned long segbase, unsigned long mapoff, unw_word_t ip, char* buf, size_t buf_len, unw_word_t* offp) argument
599 get_proc_name( unw_addr_space_t as, pid_t pid, unw_word_t ip, char* buf, size_t buf_len, unw_word_t* offp, void* as_arg) argument
[all...]
H A Delfxx.h75 unw_word_t* offp, void* as_arg);
79 unsigned long mapoff, unw_word_t ip, char* buf, size_t buf_len, unw_word_t* offp);
/external/libunwind/doc/
H A Dunw_get_proc_name.tex15 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{char~*}\Var{bufp}, \Type{size\_t} \Var{len}, \Type{unw\_word\_t~*}\Var{offp});\\
23 the name of the procedure. The \Var{offp} argument is a pointer to a
29 return a value of 0x80 in the word pointed to by \Var{offp} (assuming
38 However, the offset returned through \Var{offp} is always relative to
H A Dunw_create_addr_space.tex74 \SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\Type{size\_t} \Var{buf\_len}, \Type{unw\_word\_t~*}\Var{offp},\\
224 returned. Argument \Var{offp} is a pointer to a word which is used to
229 pointed to by \Var{offp} (assuming the procedure is at least 0x80
/external/libunwind/src/aarch64/
H A DGinit.c193 char *buf, size_t buf_len, unw_word_t *offp,
196 return _Uelf64_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
192 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/arm/
H A DGinit.c186 char *buf, size_t buf_len, unw_word_t *offp,
189 return _Uelf32_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
185 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/hppa/
H A DGinit.c200 char *buf, size_t buf_len, unw_word_t *offp,
203 return _Uelf32_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
199 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/mips/
H A DGinit.c205 char *buf, size_t buf_len, unw_word_t *offp,
209 return elf_w (get_proc_name) (as, getpid (), ip, buf, buf_len, offp, arg);
204 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/ppc32/
H A DGinit.c222 char *buf, size_t buf_len, unw_word_t *offp,
225 return _Uelf32_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
221 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/ppc64/
H A DGinit.c231 char *buf, size_t buf_len, unw_word_t *offp,
234 return _Uelf64_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
230 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/sh/
H A DGinit.c192 char *buf, size_t buf_len, unw_word_t *offp,
195 return _Uelf32_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
191 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/tests/
H A Dtest-proc-info.c119 unw_word_t *offp UNUSED,
/external/libunwind/src/x86/
H A DGinit.c254 char *buf, size_t buf_len, unw_word_t *offp,
257 return _Uelf32_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
253 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/libunwind/src/x86_64/
H A DGinit.c273 char *buf, size_t buf_len, unw_word_t *offp,
276 return _Uelf64_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
272 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
/external/llvm/lib/Support/
H A Dregengine.inc75 const char *offp; /* offsets work from here */
173 m->offp = string;
269 pmatch[0].rm_so = m->coldp - m->offp;
270 pmatch[0].rm_eo = endp - m->offp;
462 m->pmatch[i].rm_so = sp - m->offp;
467 m->pmatch[i].rm_eo = sp - m->offp;
595 ssp = m->offp + m->pmatch[i].rm_so;
650 m->pmatch[i].rm_so = sp - m->offp;
661 m->pmatch[i].rm_eo = sp - m->offp;
/external/libunwind/src/ia64/
H A DGinit.c376 char *buf, size_t buf_len, unw_word_t *offp,
379 return _Uelf64_get_proc_name (as, getpid (), ip, buf, buf_len, offp, arg);
375 get_static_proc_name(unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len, unw_word_t *offp, void *arg) argument
H A DGparser.c165 alloc_spill_area (unsigned long *offp, unsigned long regsize, argument
175 *offp -= regsize;
176 reg->val = *offp;
/external/webrtc/talk/media/testdata/
H A Dvoice.rtpdump11 ��pjdho�}z����������}ohh|{m`bo�q��������������������op���}svzyouo}��xngotofjagjyuqnv�tr�yn������x�����q����jl`l��}rfeo~��wy��������}w��qkrlnmuy���{~��������pyt��ql��x�9r�4����pjo�xptmfj|xlkjspyo������z����ml���������������|��}wo~ygd\n��g^_}���������jhbdfcakl�|yxm���oz��������|����oao��qn}�����rks��������nz��mb`jhfghnecs��qhfir�yt���������9s�4�J��pj����u~~}ooovnje}��qwnifx���}�����������}{��������z�����~mt���������������~��pj__^rmkedc`hmiclv�lgs�mhm���jnn��z�����������{hk|yqr��ylkn��lbkp���oj���lmi�qw��v����9t�4���pjis����������������������{���vjnm{opag`fgdd_cfnonly��������koqtjs��nb_kip���������{osz����������sm`o���n``_jhln����pr������������������pl����qkpyrox���~��sslux}����9u�4����pjxokx������|llr~xnnsof^]__\]fjlfox���������������s]b|������z�~}������x|offp�}lglnokilon~����m����t���~r���{z����vz�������nns�y{�����nouux��p_Z]dfbmzyqdm��z������ƀ9v�4�*��pj���~���|���w|��������rml��mhcgb_[^n�r``t~vyvluiil��vdd|���q���������{���nu��|ld����t{����|���qs�����������yno~��||pjx�����lw{�tmbcr{zncm���������smw�om����zhgf��ـ9w�4�ʎ�pjrov|��������ng����liy���nogjijaadhhfqyq`\c����ny���op���qn������������������vn���j`bv��mkxp���jgv����~�i`Y[_ge^Y[dz�x}����������xnfnv�vxt}�����������wmjirgj������9x�4�j��pjop����w�������x���qrw}{m_]]u��xt_gv�����{lc[^hhhx���uhl��������������mm���l^c��}e_c��uefm����ohi{��plt�������������������������ztrqg_ddaa]_le`_ei~��s{�����xz�j���9y�4�

Completed in 8785 milliseconds