OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:orig_auxv
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/coregrind/m_initimg/
initimg-solaris.c
314
static void copy_auxv_entry(const vki_auxv_t *
orig_auxv
, Int type,
319
if (
orig_auxv
== NULL) {
325
for ( ;
orig_auxv
->a_type != VKI_AT_NULL;
orig_auxv
++) {
326
if (
orig_auxv
->a_type == type) {
328
auxv->a_un.a_val =
orig_auxv
->a_un.a_val;
403
vki_auxv_t *
orig_auxv
= find_original_auxv(init_sp);
local
823
copy_auxv_entry(
orig_auxv
, VKI_AT_SUN_SYSSTAT_ADDR,
831
copy_auxv_entry(
orig_auxv
, VKI_AT_SUN_SYSSTAT_ZONE_ADDR,
[
all
...]
initimg-linux.c
400
const struct auxv *
orig_auxv
;
local
415
orig_auxv
= find_auxv(init_sp);
453
for (cauxv =
orig_auxv
; cauxv->a_type != AT_NULL; cauxv++) {
626
for (;
orig_auxv
->a_type != AT_NULL; auxv++,
orig_auxv
++) {
629
*auxv = *
orig_auxv
;
675
auxv->u.a_ptr = copy_str(&strtab,
orig_auxv
->u.a_ptr);
809
VG_(memcpy)(strtab,
orig_auxv
->u.a_ptr, 16);
827
*auxv = *
orig_auxv
;
[
all
...]
Completed in 1628 milliseconds