HomeSort by relevance Sort by last modified time
    Searched refs:gdbserver (Results 1 - 25 of 27) sorted by null

1 2

  /prebuilts/misc/android-arm/gdbserver/
Android.mk 4 # Explicitly mark gdbserver as "debug" so that it doesn't
7 LOCAL_SRC_FILES := gdbserver
8 LOCAL_MODULE := gdbserver
  /prebuilts/misc/android-mips/gdbserver/
Android.mk 4 # Explicitly mark gdbserver as "debug" so that it doesn't
7 LOCAL_SRC_FILES := gdbserver
8 LOCAL_MODULE := gdbserver
  /prebuilts/misc/android-x86/gdbserver/
Android.mk 4 # Explicitly mark gdbserver as "debug" so that it doesn't
7 LOCAL_SRC_FILES := gdbserver
8 LOCAL_MODULE := gdbserver
  /external/skia/platform_tools/android/bin/
android_gdb_app 3 # android_gdb_app: Pushes gdbserver, launches sampleApp, and connects
18 # We kill all previous instances of gdbserver to rid all port overriding errors.
20 $ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB $DEVICE_SERIAL shell kill
22 $ADB $DEVICE_SERIAL shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB $DEVICE_SERIAL shell kill
37 echo "Pushing gdbserver..."
38 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver /data/local/tmp
47 # Attach gdbserver to the app process
50 $ADB $DEVICE_SERIAL shell /data/local/tmp/gdbserver :$PORT --attach $PID &
52 # Wait for gdbserver
android_gdbserver 3 # android_gdbserver: Pushes gdbserver. Starts debugging environment.
71 echo "Pushing gdbserver..."
72 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver /data/local/tmp
77 # Kill all previous instances of gdbserver and the app to rid all port overriding errors.
79 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill
82 # Starting up gdbserver in android shell
83 echo "Starting gdbserver with command: ${APP_ARGS[@]}"
84 $ADB shell LD_LIBRARY_PATH=/data/local/tmp:\$LD_LIBRARY_PATH /data/local/tmp/gdbserver :5039 /data/local/tmp/skia_launcher ${APP_ARGS[@]} &
  /prebuilts/misc/android-arm64/gdbserver64/
Android.mk 4 # Explicitly mark gdbserver as "debug" so that it doesn't
  /prebuilts/misc/android-mips64/gdbserver64/
Android.mk 4 # Explicitly mark gdbserver as "debug" so that it doesn't
  /prebuilts/misc/android-x86_64/gdbserver64/
Android.mk 4 # Explicitly mark gdbserver as "debug" so that it doesn't
  /external/valgrind/include/
pub_tool_gdbserver.h 50 // Calling VG_(gdbserver) with tid > 0 means to let a debugger attach
51 // to the valgrind process. gdbserver will report to gdb that the
53 // Calling VG_(gdbserver) with tid == 0 indicates to close
54 // the connection with GDB (if still open) and stop gdbserver.
56 extern void VG_(gdbserver) ( ThreadId tid );
60 processing in order to enable/disable the call to VG_(gdbserver) in
63 (temporarily) avoid calling gdbserver for error reporting during
68 /* defines the various kinds of breakpoints that gdbserver
70 the gdbserver protocol definition. The level of support
77 instrumentation to be done for gdbserver. This instrumentatio
    [all...]
  /ndk/build/tools/
build-gdbserver.sh 17 # This shell script is used to rebuild the gdbserver binary from
27 "Rebuild the gdbserver prebuilt binary for the Android NDK toolchain.
29 Where <src-dir> is the location of the gdbserver sources,
35 <ndk-dir>/toolchains <toolchain>/prebuilt/gdbserver
42 BUILD_OUT=$TMPDIR/build/gdbserver
86 SRC_DIR2="$SRC_DIR/gdb/gdb-$GDBVER/gdb/gdbserver"
89 log "Found gdbserver source directory: $SRC_DIR"
93 echo "ERROR: Source directory does not contain gdbserver sources: $SRC_DIR"
179 # configure the gdbserver build now
180 dump "Configure: $TOOLCHAIN gdbserver-$GDBVER build with $PLATFORM
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
target.h 32 /* This file defines the architecture independent Valgrind gdbserver
35 These high level operations are called by the gdbserver
92 The Resume is really only executed once the gdbserver
97 process till there is a reason to call the gdbserver
101 control is given to gdbserver. Gdbserver will send a resume
113 /* When execution is stopped and gdbserver has control, more
147 /* True if gdbserver is single stepping the valgrind process */
244 // to copy data from/to valgrind to/from gdbserver.
248 void *gdbserver,
    [all...]
target.c 62 /* synchronize threads known by valgrind and threads known by gdbserver */
150 gdb/gdbserver has changed the pc so as to have either
539 /* Attention: gdbserver convention differs: 0 means ok; 1 means not ok */
786 void *gdbserver,
792 VG_(dmemcpy) (gdbserver, valgrind, sz, mod);
794 VG_(dmemcpy) (valgrind, gdbserver, sz, mod);
m_gdbserver.c 65 init_reason, // initialises gdbserver resources
66 vgdb_reason, // gdbserver invocation by vgdb doing ptrace
67 core_reason, // gdbserver invocation by core (e.g. error encountered)
88 /* An instruction instrumented for gdbserver looks like this:
149 buf[w] = VG_(strdup)("gdbserver sym", name);
154 buf[w] = VG_(strdup)("gdbserver sym", name);
159 /* Each time gdbserver is called, gdbserver_called is incremented
160 gdbserver_exited is incremented when gdbserver is asked to exit */
190 because they have been (or must be) instrumented for gdbserver.
193 exit of a block that has been instrumented for gdbserver whil
780 void VG_(gdbserver) ( ThreadId tid ) function
    [all...]
  /external/skia/platform_tools/android/bin/utils/
setup_toolchain.sh 63 cp android-ndk-$NDK/prebuilt/android-$ANDROID_ARCH/gdbserver/gdbserver $TOOLCHAIN
  /external/v8/build/android/
adb_gdb 33 log "Killing background gdbserver process: $GDBSERVER_PID"
37 log "Removing target gdbserver binary: $TARGET_GDBSERVER."
90 GDBSERVER=
131 --gdbserver=*)
132 GDBSERVER=$optarg
255 - target gdbserver binary
276 Otherwise, the script will complain, but you can use the --gdbserver,
319 --attach-delay=<num> Seconds to wait for gdbserver to attach to the
327 --gdbserver=<file> Specify target gdbserver binary
    [all...]
  /external/valgrind/none/tests/
cmdline1.stdout.exp 19 --vgdb=no|yes|full activate gdbserver? [yes]
21 --vgdb-error=<number> invoke gdbserver after <number> errors [999999999]
24 --vgdb-stop-at=event1,event2,... invoke gdbserver for given events [none]
89 --vgdb-poll=<number> gdbserver poll max every <number> basic blocks [5000]
cmdline2.stdout.exp 19 --vgdb=no|yes|full activate gdbserver? [yes]
21 --vgdb-error=<number> invoke gdbserver after <number> errors [999999999]
24 --vgdb-stop-at=event1,event2,... invoke gdbserver for given events [none]
89 --vgdb-poll=<number> gdbserver poll max every <number> basic blocks [5000]
  /ndk/build/core/
setup-toolchain.mk 145 # We expect the gdbserver binary for this toolchain to be located at its root.
146 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-$(TARGET_ARCH)/gdbserver/gdbserver
166 # Ensure that for debuggable applications, gdbserver will be copied to
169 NDK_APP_GDBSERVER := $(NDK_APP_DST_DIR)/gdbserver
185 $(call host-echo-build-step,$(PRIVATE_ABI),Gdbserver) "[$(PRIVATE_NAME)] $(call pretty-dir,$(PRIVATE_DST))"
setup-app.mk 133 $(hide) $(call host-rm,$(NDK_ALL_ABIS:%=$(NDK_APP_LIBS_OUT)/%/gdbserver))
  /development/scripts/
gdbclient 153 # TODO: check if tracing process is gdbserver and not some random strace...
155 # start gdbserver
156 echo "Starting gdbserver..."
161 echo ". starting gdbserver to attach to pid=$PID..."
162 adb shell gdbserver$USE64BIT :$PORT --attach $PID &
167 echo "It looks like gdbserver is already attached to $PID (process is traced), trying to connect to it using local port=$PORT"
  /external/valgrind/gdbserver_tests/
mchelp.stdoutB.exp 71 v.info gdbserver_status : show gdbserver status
79 v.set hostvisibility [yes*|no] : (en/dis)ables access by gdb/gdbserver to
83 An additional flag 0b100000000 allows to show gdbserver instrumentation
  /external/valgrind/coregrind/
m_libcassert.c 262 // avoid recursive exit during gdbserver call.
270 VG_(gdbserver) (atid);
277 // Always terminate the gdbserver when Valgrind exits, so as
m_errormgr.c 531 VG_(gdbserver)( err->tid );
570 * calls do_actions_on_error. This optionally does a gdbserver call
    [all...]
m_main.c 105 " --vgdb=no|yes|full activate gdbserver? [yes]\n"
107 " --vgdb-error=<number> invoke gdbserver after <number> errors [%d]\n"
110 " --vgdb-stop-at=event1,event2,... invoke gdbserver for given events [none]\n"
175 " --vgdb-poll=<number> gdbserver poll max every <number> basic blocks [%d] \n"
    [all...]
  /external/valgrind/coregrind/m_scheduler/
scheduler.c 71 #include "pub_core_gdbserver.h" // for VG_(gdbserver)/VG_(gdbserver_activity)
119 poll for gdbserver activity. VG_(force_vgdb_poll) and
    [all...]

Completed in 1575 milliseconds

1 2