| /freebsd/contrib/netbsd-tests/bin/ps/ |
| H A D | t_ps.sh | 237 check_heading_keywords '-o comm' \ 240 check_heading_keywords '-o comm,pid' \ 255 check_heading_regexp '-o pid=PPP -o comm' \ 257 check_heading_regexp '-o pid=PPP -o comm=CCC' \ 259 check_heading_regexp '-o pid,comm=CCC' \ 261 check_heading_regexp '-o pid -o comm=CCC' \ 264 check_heading_regexp '-o comm=CCC' \ 267 check_heading_regexp '-o comm=CCC -o pid=PPP' \ 269 check_heading_regexp '-o comm,pid=PPP' \ 284 check_heading_regexp '-o comm,pid==' \ [all …]
|
| /freebsd/contrib/bsnmp/tests/ |
| H A D | snmp_parse_server.cc | 451 const auto comm = "public"s; variable 453 const auto str = comm + "@" + host; 458 REQUIRE(sc.read_community == comm); 459 REQUIRE(sc.write_community == comm); 462 const auto comm = "public@bla"s; variable 464 const auto str = comm + "@" + host; 469 REQUIRE(sc.read_community == comm); 470 REQUIRE(sc.write_community == comm); 473 const auto comm = ""s; variable 475 const auto str = comm + "@" + host; [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl_amd64.S | 14 .comm _ZN14__interception15real___setjmp14E,8,8 16 .comm _ZN14__interception11real_setjmpE,8,8 65 .comm _ZN14__interception12real__setjmpE,8,8 101 .comm _ZN14__interception18real___sigsetjmp14E,8,8 106 .comm _ZN14__interception14real_sigsetjmpE,8,8 164 .comm _ZN14__interception16real___sigsetjmpE,8,8
|
| H A D | tsan_rtl_aarch64.S | 15 .comm _ZN14__interception11real_setjmpE,8,8 66 .comm _ZN14__interception12real__setjmpE,8,8 117 .comm _ZN14__interception14real_sigsetjmpE,8,8 170 .comm _ZN14__interception16real___sigsetjmpE,8,8
|
| H A D | tsan_rtl_loongarch64.S | 6 .comm _ZN14__interception11real_setjmpE,8,8 54 .comm _ZN14__interception12real__setjmpE,8,8 102 .comm _ZN14__interception14real_sigsetjmpE,8,8 150 .comm _ZN14__interception16real___sigsetjmpE,8,8
|
| H A D | tsan_rtl_mips64.S | 5 .comm _ZN14__interception11real_setjmpE,8,8 58 .comm _ZN14__interception12real__setjmpE,8,8 110 .comm _ZN14__interception14real_sigsetjmpE,8,8 163 .comm _ZN14__interception16real___sigsetjmpE,8,8
|
| /freebsd/contrib/bsnmp/snmpd/ |
| H A D | trap.c | 85 u_char comm[SNMP_COMMUNITY_MAXLEN + 1]; member 113 t->comm[0] = '\0'; in trapsink_create() 141 strcpy(t->comm, tdep->comm); in trapsink_create() 143 if (t->comm[0] != '\0') in trapsink_create() 178 strcpy(tdep->rb_comm, t->comm); in trapsink_modify() 192 strcpy(t->comm, tdep->comm); in trapsink_modify() 197 if (t->comm[0] == '\0') { in trapsink_modify() 200 strcpy(t->comm, tdep->rb_comm); in trapsink_modify() 218 strcpy(t->comm, tdep->rb_comm); in trapsink_unmodify() 379 strncpy(tdep->comm, value->v.octetstring.octets, in op_trapsink() [all …]
|
| /freebsd/bin/sh/tests/execution/ |
| H A D | fork1.0 | 5 result=$(${SH} -c 'ps -p $$ -o comm=') 8 result=$(${SH} -c 'ps -p $$ -o comm=; :')
|
| /freebsd/contrib/bsnmp/lib/ |
| H A D | snmpclient.c | 1950 get_comm(struct snmp_client *sc, const char *comm[2]) in get_comm() 1952 const char *p = strrchr(comm[0], '@'); in get_comm() 1956 return (comm[1] = comm[0]); in get_comm() 1958 if (p - comm[0] > SNMP_COMMUNITY_MAXLEN) { in get_comm() 1960 p - comm[0], comm[0]); in get_comm() 1964 return ((comm[1] = p) + 1); in get_comm() 2162 const char *comm[2], *ipv6[2], *ipv4[2], *host[2], *port[2]; in snmp_parse_server() local 2172 comm[0] = str; in snmp_parse_server() 2173 if ((str = get_comm(sc, comm)) == NULL) in snmp_parse_server() 2207 printf("comm: %zu %zu\n", comm[0] - orig, comm[1] - orig); in snmp_parse_server() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/ |
| H A D | ProcessFreeBSDKernel.cpp | 201 char comm[fbsd_maxcomlen + 1]; in DoUpdateThreadList() local 202 ReadCStringFromMemory(proc + offset_p_comm, comm, sizeof(comm), error); in DoUpdateThreadList() 226 std::string thread_desc = llvm::formatv("(pid {0}) {1}", pid, comm); in DoUpdateThreadList() 227 if (*thread_name && strcmp(thread_name, comm)) { in DoUpdateThreadList()
|
| /freebsd/tools/build/options/ |
| H A D | makeman | 322 comm -13 $t/config_WITH_ALL $t/config_WITH_ALL_${opt} | sed -n "/^${opt}$/!p" > $t/deps 326 comm -13 $t/config_WITHOUT_ALL $t/config_WITHOUT_ALL_${opt} | sed -n "/^${opt}$/!p" > $t/deps 333 comm -13 $t/config_default $t/config_${opt} | sed -n "/^${opt}$/!p" | 334 comm -13 $t/deps - > $t/deps2
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteClientBase.cpp | 306 GDBRemoteClientBase::ContinueLock::ContinueLock(GDBRemoteClientBase &comm) in ContinueLock() argument 307 : m_comm(comm), m_acquired(false) { in ContinueLock() 355 GDBRemoteClientBase::Lock::Lock(GDBRemoteClientBase &comm, in Lock() argument 357 : m_async_lock(comm.m_async_mutex, std::defer_lock), m_comm(comm), in Lock()
|
| H A D | GDBRemoteClientBase.h | 79 Lock(GDBRemoteClientBase &comm, 158 explicit ContinueLock(GDBRemoteClientBase &comm);
|
| /freebsd/sys/kern/ |
| H A D | tty_info.c | 295 char comm[MAXCOMLEN + 1]; in tty_info() local 384 strlcpy(comm, p->p_comm, sizeof comm); in tty_info() 390 comm, pid, stateprefix, state, in tty_info()
|
| /freebsd/sys/dev/mlx4/mlx4_core/ |
| H A D | mlx4_catas.c | 108 comm_flags = swab32(readl((__iomem char *)priv->mfunc.comm + in mlx4_reset_slave() 133 (__iomem char *)priv->mfunc.comm + MLX4_COMM_CHAN_FLAGS); in mlx4_reset_slave() 141 comm_flags = swab32(readl((__iomem char *)priv->mfunc.comm + in mlx4_reset_slave() 236 slave_read = swab32(readl(&priv->mfunc.comm->slave_read)); in poll_catas()
|
| H A D | mlx4_cmd.c | 257 u32 status = readl(&priv->mfunc.comm->slave_read); in comm_pending() 282 &priv->mfunc.comm->slave_write); in mlx4_comm_cmd_post() 2202 &priv->mfunc.comm[slave].slave_read); in mlx4_master_do_cmd() 2230 &priv->mfunc.comm[slave].slave_read); in mlx4_master_do_cmd() 2264 &mfunc->comm[slave].slave_write)); in mlx4_master_comm_channel() 2265 slt = swab32(readl(&mfunc->comm[slave].slave_read)) in mlx4_master_comm_channel() 2300 wr_toggle = swab32(readl(&priv->mfunc.comm->slave_write)); in sync_toggles() 2307 rd_toggle = swab32(readl(&priv->mfunc.comm->slave_read)); in sync_toggles() 2311 wr_toggle = swab32(readl(&priv->mfunc.comm-> in sync_toggles() 2331 __raw_writel((__force u32) 0, &priv->mfunc.comm->slave_read); in sync_toggles() [all …]
|
| /freebsd/usr.sbin/freebsd-update/ |
| H A D | freebsd-update.sh | 1179 comm -23 serverlist_full - > serverlist 1536 comm -23 diff-OLD diff-rm | 1594 comm -13 - oldfiles | 1644 comm -13 - $1.tmp > $1 1762 comm -13 - $2-values | 1808 comm -13 $1-values $2-values | 1818 comm -13 $1 $2 | 1871 comm -23 $1.nodes $2.nodes > $1.badnodes 1880 comm -13 - $1 > $1.tmp 1897 comm -13 $1.metadata $2.metadata > keepmeta [all …]
|
| /freebsd/stand/i386/btx/lib/ |
| H A D | btxcsu.S | 46 .comm __base,4 # Client base address 47 .comm __args,4 # Client arguments
|
| /freebsd/contrib/nvi/catalog/ |
| H A D | Makefile | 49 comm -13 __ck1 __ck2; \ 52 comm -23 __ck1 __ck2; \
|
| /freebsd/contrib/less/ |
| H A D | FREEBSD-upgrade | 11 10. comm -23 ../old ../new | xargs svn rm 12 11. comm -13 ../old ../new | xargs svn add
|
| /freebsd/contrib/bmake/ |
| H A D | import.sh | 82 comm -13 $TF.adds $TF.rms > $TF.rm 122 comm -23 $TF.adds $TF.rms > $TF.add
|
| /freebsd/tools/regression/compat32/aarch64/ |
| H A D | swp_test_impl.S | 400 .comm stack1,STACK_SIZE,1 403 .comm tls1,TLS_SIZE,1 407 .comm stack2,STACK_SIZE,1 410 .comm tls2,TLS_SIZE,1
|
| /freebsd/crypto/openssl/crypto/perlasm/ |
| H A D | x86nasm.pl | 128 { my $comm=<<___; 134 push (@out,$comm)
|
| H A D | x86masm.pl | 143 { my $comm=<<___; 150 push (@out,$comm);
|
| /freebsd/sbin/geom/core/ |
| H A D | geom.c | 65 static char comm[MAXPATHLEN], *class_name = NULL, *gclass_name = NULL; variable 124 fprintf(stderr, "%s %s %s %s\n", prefix, comm, in usage_command() 131 fprintf(stderr, "%s %s %s", prefix, comm, cmd->gc_name); in usage_command() 629 snprintf(comm, sizeof(comm), "%s", basename((*argv)[0])); in get_class() 630 if (strcmp(comm, "geom") == 0) { in get_class() 639 strlcatf(comm, sizeof(comm), " %s", (*argv)[1]); in get_class() 643 } else if (*comm == 'g') { in get_class() 644 class_name = comm + 1; in get_class()
|