Searched refs:gdb (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-13-stable/contrib/netbsd-tests/usr.bin/gdb/
H A Dt_regress.sh34 atf_set "descr" "Test that gdb works with threaded programs"
35 atf_set "require.progs" "gdb"
41 cat <<EOF >test.gdb
49 gdb --batch -x test.gdb dig >gdb.out
50 atf_check -s exit:1 -o ignore -e ignore grep "Program received signal SIGTRAP" gdb.out
57 atf_set "descr" "Test that gdb works with PIE executables"
58 atf_set "require.progs" "cc gdb"
66 cat <<EOF >test.gdb
[all...]
/freebsd-13-stable/crypto/openssh/regress/
H A Dagent-ptrace.sh20 if have_prog gdb ; then
23 echo "skipped (gdb not found)"
50 gdb ${SSHAGENT} ${SSH_AGENT_PID} > ${OBJ}/gdb.out 2>&1 << EOF
55 fail "gdb failed: exit code $r"
57 egrep 'ptrace: Operation not permitted.|procfs:.*Permission denied.|ttrace.*Permission denied.|procfs:.*: Invalid argument.|Unable to access task ' >/dev/null ${OBJ}/gdb.out
59 rm -f ${OBJ}/gdb.out
/freebsd-13-stable/targets/pseudo/userland/gnu/
H A DMakefile.depend24 gnu/usr.bin/gdb/doc \
25 gnu/usr.bin/gdb/gdb \
26 gnu/usr.bin/gdb/gdbserver \
27 gnu/usr.bin/gdb/kgdb \
28 gnu/usr.bin/gdb/libgdb \
/freebsd-13-stable/sys/dev/uart/
H A Duart_dbg.c38 #include <gdb/gdb.h>
/freebsd-13-stable/sys/powerpc/powerpc/
H A Dgdb_machdep.c48 #include <gdb/gdb.h>
49 #include <gdb/gdb_int.h>
/freebsd-13-stable/contrib/subversion/subversion/libsvn_ra_serf/
H A Dstat.c423 struct get_dir_baton_t gdb;
426 gdb.result_pool = result_pool;
427 gdb.is_directory = FALSE;
428 gdb.supports_deadprop_count = svn_tristate_unknown;
452 gdb.path = path;
462 gdb.dirents = apr_hash_make(result_pool);
470 get_dir_dirents_cb, &gdb,
476 gdb.dirents = NULL;
480 gdb.ret_props = apr_hash_make(result_pool);
485 get_dir_props_cb, &gdb,
421 struct get_dir_baton_t gdb; local
[all...]
/freebsd-13-stable/sys/arm64/arm64/
H A Dgdb_machdep.c43 #include <gdb/gdb.h>
44 #include <gdb/gdb_int.h>
/freebsd-13-stable/sys/gdb/
H A Dgdb_cons.c30 * Support for redirecting console msgs to gdb. We register
31 * a pseudo console to hook cnputc and send stuff to the gdb
51 #include <gdb/gdb.h>
52 #include <gdb/gdb_int.h>
72 sprintf(cp->cn_name, "gdb");
176 CONSOLE_DRIVER(gdb); variable
H A Dnetgdb.c35 * both NetGDB and gdb(1), and pass bidirectional traffic between the two
38 * Second, The NetGDB client is activated much like ordinary 'gdb' and
43 * Finally, the remote (k)gdb(1) uses 'target remote <proxy>:<port>' to connect
80 #include <gdb/gdb.h>
81 #include <gdb/gdb_int.h>
82 #include <gdb/netgdb.h>
188 * driver that the MI gdb(4) code does I/O with).
289 if (strcmp(be->dbbe_name, "gdb") != 0)
388 if (kdb_dbbe_select("gdb") !
[all...]
H A Dgdb_packet.c42 #include <gdb/gdb.h>
43 #include <gdb/gdb_int.h>
H A Dgdb_main.c44 #include <gdb/gdb.h>
45 #include <gdb/gdb_int.h>
47 SYSCTL_NODE(_debug, OID_AUTO, gdb, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
53 KDB_BACKEND(gdb, gdb_init, NULL, NULL, gdb_trap);
276 * https://sourceware.org/gdb/onlinedocs/gdb/Packet-Acknowledgment.html
297 * vs actual packet length constraints. A non-byzantine gdb host should allow
412 * [0]: https://sourceware.org/gdb/current/onlinedocs/gdb/Threa
[all...]
/freebsd-13-stable/sys/mips/mips/
H A Dgdb_machdep.c107 #include <gdb/gdb.h>
/freebsd-13-stable/contrib/kyua/utils/
H A Dstacktrace.cpp133 const fs::path gdb_script_path = control_directory / "gdb.script";
187 const fs::path gdb(builtin_gdb);
188 if (gdb.is_absolute())
189 return utils::make_optional(gdb);
191 return fs::find_in_path(gdb.c_str());
279 /// gdb handler from.
282 /// information to gdb from.
306 const optional< fs::path > gdb = utils::find_gdb(); local
307 if (!gdb) {
323 run_gdb(gdb
[all...]
H A Dstacktrace_test.cpp279 utils::builtin_gdb = "/path/to/gdb";
280 optional< fs::path > gdb = utils::find_gdb(); local
281 ATF_REQUIRE(gdb);
282 ATF_REQUIRE_EQ("/path/to/gdb", gdb.get().str());
296 optional< fs::path > gdb = utils::find_gdb(); local
297 ATF_REQUIRE(gdb);
298 ATF_REQUIRE_EQ(exp_gdb, gdb.get());
307 optional< fs::path > gdb = utils::find_gdb(); local
308 ATF_REQUIRE(!gdb);
316 optional< fs::path > gdb = utils::find_gdb(); local
485 const std::string gdb = (fs::current_path() / "fake-gdb").str(); local
512 const std::string gdb = (fs::current_path() / "fake-gdb").str(); local
[all...]
/freebsd-13-stable/sys/i386/i386/
H A Dgdb_machdep.c46 #include <gdb/gdb.h>
47 #include <gdb/gdb_int.h>
/freebsd-13-stable/sys/powerpc/powernv/
H A Dopal_dbg.c40 #include <gdb/gdb.h>
/freebsd-13-stable/sys/powerpc/pseries/
H A Dphyp_dbg.c33 #include <gdb/gdb.h>
/freebsd-13-stable/sys/arm/arm/
H A Dgdb_machdep.c47 #include <gdb/gdb.h>
/freebsd-13-stable/sys/amd64/amd64/
H A Dgdb_machdep.c51 #include <gdb/gdb.h>
52 #include <gdb/gdb_int.h>
/freebsd-13-stable/usr.sbin/crashinfo/
H A Dcrashinfo.sh48 # Find a gdb binary to use and save the value in GDB.
53 for binary in /usr/local/bin/gdb /usr/libexec/gdb; do
61 # Run a single gdb command against a kernel file in batch mode.
70 if [ ${GDB} = /usr/local/bin/gdb ]; then
180 echo "Please install the devel/gdb port or gdb package."
242 ${GDB%gdb}kgdb $KERNEL $VMCORE < $file
/freebsd-13-stable/sys/contrib/openzfs/scripts/
H A Dzloop.sh34 GDB=${GDB:-gdb}
161 echo "$coredebug" >>"$dest/ztest.gdb"
/freebsd-13-stable/sys/
H A DMakefile4 CSCOPEDIRS= bsm cam cddl compat conf contrib crypto ddb dev fs gdb \
/freebsd-13-stable/lib/clang/liblldb/
H A DMakefile405 SRCS+= Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
466 SRCS+= Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
467 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
468 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
469 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
470 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
471 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
472 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
473 SRCS+= Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
474 SRCS+= Plugins/Process/gdb
[all...]
/freebsd-13-stable/contrib/sqlite3/tea/
H A DMakefile.in246 gdb:
247 $(TCLSH_ENV) gdb $(TCLSH_PROG) $(SCRIPT)
/freebsd-13-stable/usr.sbin/bhyve/
H A DMakefile29 gdb.c \

Completed in 260 milliseconds

12