HomeSort by relevance Sort by last modified time
    Searched refs:gdbserver (Results 1 - 25 of 34) 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/chromium_org/third_party/skia/platform_tools/android/bin/
android_gdbserver 3 # android_gdbserver: Pushes gdbserver. Starts debugging environment.
55 echo "Pushing gdbserver..."
56 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver data/local/tmp
61 # Kill all previous instances of gdbserver and the app to rid all port overriding errors.
63 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill
66 # Starting up gdbserver in android shell
67 echo "Starting gdbserver with command: ${APP_ARGS[@]}"
68 $ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/skia_launcher ${APP_ARGS[@]} &
android_gdb_apk 3 # android_gdb: Pushes parameter binary and gdbserver. Connects
18 # We kill all previous instances of gdbserver to rid all port overriding errors.
19 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB shell kill
30 echo "Pushing gdbserver..."
31 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver /data/local/tmp
38 # Attach gdbserver to the app process
41 $ADB shell /data/local/tmp/gdbserver :$PORT --attach $PID &
43 # Wait for gdbserver
  /external/skia/platform_tools/android/bin/
android_gdbserver 3 # android_gdbserver: Pushes gdbserver. Starts debugging environment.
55 echo "Pushing gdbserver..."
56 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver data/local/tmp
61 # Kill all previous instances of gdbserver and the app to rid all port overriding errors.
63 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs $ADB shell kill
66 # Starting up gdbserver in android shell
67 echo "Starting gdbserver with command: ${APP_ARGS[@]}"
68 $ADB shell /data/local/tmp/gdbserver :5039 /data/local/tmp/skia_launcher ${APP_ARGS[@]} &
android_gdb_apk 3 # android_gdb: Pushes parameter binary and gdbserver. Connects
18 # We kill all previous instances of gdbserver to rid all port overriding errors.
19 $ADB shell ps | grep gdbserver | awk '{print $2}' | xargs -r $ADB shell kill
30 echo "Pushing gdbserver..."
31 adb_push_if_needed $ANDROID_TOOLCHAIN/../gdbserver /data/local/tmp
38 # Attach gdbserver to the app process
41 $ADB shell /data/local/tmp/gdbserver :$PORT --attach $PID &
43 # Wait for gdbserver
  /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
  /ndk/toolchains/llvm-3.4/
setup.mk 30 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-arm/gdbserver/gdbserver
43 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-arm/gdbserver/gdbserver
56 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-arm/gdbserver/gdbserver
69 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-x86/gdbserver/gdbserver
82 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-mips/gdbserver/gdbserver
    [all...]
  /ndk/toolchains/llvm-3.3/
setup.mk 30 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-arm/gdbserver/gdbserver
43 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-arm/gdbserver/gdbserver
56 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-arm/gdbserver/gdbserver
69 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-x86/gdbserver/gdbserver
82 TARGET_GDBSERVER := $(NDK_ROOT)/prebuilt/android-mips/gdbserver/gdbserver
    [all...]
  /external/valgrind/main/include/
pub_tool_gdbserver.h 52 // Calling VG_(gdbserver) with tid > 0 means to let a debugger attach
53 // to the valgrind process. gdbserver will report to gdb that the
55 // Calling VG_(gdbserver) with tid == 0 indicates to close
56 // the connection with GDB (if still open) and stop gdbserver.
58 extern void VG_(gdbserver) ( ThreadId tid );
62 processing in order to enable/disable the call to VG_(gdbserver) in
65 (temporarily) avoid calling gdbserver for error reporting during
70 /* defines the various kinds of breakpoints that gdbserver
72 the gdbserver protocol definition. The level of support
79 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=/tmp/ndk-$USER/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"
182 # configure the gdbserver build now
183 dump "Configure: $TOOLCHAIN gdbserver-$GDBVER build.
    [all...]
build-target-prebuilts.sh 96 # First, gdbserver
101 dump "Building $GDB_TOOLCHAIN gdbserver binaries..."
102 run $BUILDTOOLS/build-gdbserver.sh "$SRC_DIR" "$NDK_DIR" "$GDB_TOOLCHAIN" "$GDB_VERSION" $FLAGS
  /external/valgrind/main/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 */
226 // to copy data from/to valgrind to/from gdbserver.
230 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
528 /* Attention: gdbserver convention differs: 0 means ok; 1 means not ok */
635 void *gdbserver,
641 VG_(dmemcpy) (gdbserver, valgrind, sz, mod);
643 VG_(dmemcpy) (valgrind, gdbserver, sz, mod);
m_gdbserver.c 68 init_reason, // initialises gdbserver resources
69 vgdb_reason, // gdbserver invocation by vgdb doing ptrace
70 core_reason, // gdbserver invocation by core (e.g. error encountered)
91 /* An instruction instrumented for gdbserver looks like this:
156 /* Each time gdbserver is called, gdbserver_called is incremented
157 gdbserver_exited is incremented when gdbserver is asked to exit */
189 because they have been (or must be) instrumented for gdbserver.
192 exit of a block that has been instrumented for gdbserver while
194 When gdbserver is not single stepping anymore, all GS_jump entries
446 /* call gdbserver if access kind reported by the too
780 void VG_(gdbserver) ( ThreadId tid ) function
    [all...]
  /ndk/
ndk-gdb 86 # Delay in seconds between launching the activity and attaching gdbserver on it.
305 echo " --delay=<secs> Delay in seconds between activity start and gdbserver attach."
308 echo " --port=<port> Use tcp:localhost:<port> to communicate with gdbserver [$DEBUG_PORT]"
428 # $1: Package name ("com.example.hellojni") or program name ("/lib/gdbserver")
631 # Let's check that 'gdbserver' is properly installed on the device too. If 'gdbserver'
632 # is not there, push 'gdbserver' found in prebuilt.
634 DEVICE_GDBSERVER=$DATA_DIR/lib/gdbserver
638 # Figure out what's the target-arch and find gdbserver in prebuilt.
650 DEVICE_GDBSERVER=/data/local/tmp/gdbserver
    [all...]
ndk-gdb.py 115 # Delay in seconds between launching the activity and attaching gdbserver on it.
169 help='Delay in seconds between activity start and gdbserver attach',
178 help='Use tcp:localhost:<DEBUG_PORT> to communicate with gdbserver',
439 # $1: Package name ("com.example.hellojni") or program name ("/lib/gdbserver")
630 # If gdbserver exists, then we built with 'ndk-build NDK_DEBUG=1' and it's
634 gdbserver_path = os.path.join(PROJECT,'libs',COMPAT_ABI,'gdbserver')
637 log('Found gdbserver under libs/%s, assuming app was built with NDK_DEBUG=1' % (COMPAT_ABI))
648 error('''Could not find gdbserver binary under %s/libs/%s
654 # Let's check that 'gdbserver' is properly installed on the device too. If this
657 retcode,DEVICE_GDBSERVER = adb_var_shell2(['ls', '/data/data/%s/lib/gdbserver' % (PACKAGE_NAME)]
    [all...]
  /external/chromium_org/build/android/
adb_gdb 34 log "Killing background gdbserver process: $GDBSERVER_PID"
38 log "Removing target gdbserver binary: $TARGET_GDBSERVER."
93 GDBSERVER=
126 --gdbserver=*)
127 GDBSERVER=$optarg
244 - target gdbserver binary
269 Otherwise, the script will complain, but you can use the --gdbserver,
315 --gdbserver=<file> Specify target gdbserver binary.
533 BINARY=$NDK_DIR/prebuilt/android-$ARCH/gdbserver/gdbserve
    [all...]
  /external/valgrind/main/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]
82 --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]
82 --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))"
  /external/valgrind/main/gdbserver_tests/
mchelp.stdoutB.exp 62 v.info gdbserver_status : show gdbserver status
69 v.set hostvisibility [yes*|no] : (en/dis)ables access by gdb/gdbserver to
73 An additional flag 0b100000000 allows to show gdbserver instrumentation

Completed in 1286 milliseconds

1 2