Searched defs:inferior (Results 1 - 5 of 5) sorted by relevance

/external/ltrace/
H A Dvalue.h27 /* Values are objects that capture data fetched from an inferior.
28 * Typically a value is attached to a single inferior where it was
35 * are just references into inferior, no transfer has taken place yet.
36 * Reified values have been copied out of the corresponding inferior,
41 VAL_LOC_INFERIOR, /* Value is in the inferior process. */
42 VAL_LOC_COPY, /* Value was copied out of the inferior. */
49 struct process *inferior; member in struct:value
66 void value_init(struct value *value, struct process *inferior,
70 /* Initialize VALUE. This is like value_init, except that inferior is
91 /* Value resides in inferior, o
[all...]
H A Dvalue.c32 value_common_init(struct value *valp, struct process *inferior, argument
38 valp->inferior = inferior;
46 value_init(struct value *valp, struct process *inferior, struct value *parent, argument
49 assert(inferior != NULL);
50 value_common_init(valp, inferior, parent, type, own_type);
130 assert(val->inferior != NULL);
148 if (umovebytes(val->inferior, val->u.inf_address, data, size) < size) {
202 assert(val->inferior != NULL);
203 size_t size = type_sizeof(val->inferior, va
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dinferiors.c209 void * inferior_target_data (struct thread_info *inferior) argument
211 return inferior->target_data;
214 void set_inferior_target_data (struct thread_info *inferior, void *data) argument
216 inferior->target_data = data;
219 void * inferior_regcache_data (struct thread_info *inferior) argument
221 return inferior->regcache_data;
224 void set_inferior_regcache_data (struct thread_info *inferior, void *data) argument
226 inferior->regcache_data = data;
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp202 /// a ProcessMonitor is asked to deliver or change the state of an inferior
691 /// launching or attaching to the inferior process, and then 2) servicing
871 lldb::ThreadSP inferior; local
983 "Could not sync with inferior process.");
995 // ProcessMonitor instance. Similarly stash the inferior pid.
1006 inferior.reset(process.CreateNewPOSIXThread(*processSP, pid));
1009 process.GetThreadList().AddThread(inferior);
1064 lldb::ThreadSP inferior; local
1088 inferior.reset(process.CreateNewPOSIXThread(*processSP, pid));
1089 tl.AddThread(inferior);
[all...]
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp379 /// a ProcessMonitor is asked to deliver or change the state of an inferior
923 /// launching or attaching to the inferior process, and then 2) servicing
1100 lldb::ThreadSP inferior; local
1212 "Could not sync with inferior process.");
1221 // ProcessMonitor instance. Similarly stash the inferior pid.
1234 inferior.reset(process.CreateNewPOSIXThread(process, pid));
1238 process.GetThreadList().AddThread(inferior);
1295 lldb::ThreadSP inferior; local
1360 inferior.reset(process.CreateNewPOSIXThread(process, tid));
1364 process.GetThreadList().AddThread(inferior);
[all...]

Completed in 375 milliseconds