Symbol: system
bin/ed/main.c
835
system(shcmd + 1);
crypto/heimdal/appl/telnet/telnet/defines.h
36
#define settimer(x) clocks.x = clocks.system++
crypto/heimdal/appl/telnet/telnet/types.h
45
system, /* what the current time is */
crypto/heimdal/appl/telnet/telnetd/defs.h
83
#define settimer(x) (clocks.x = ++clocks.system)
crypto/heimdal/appl/telnet/telnetd/ext.h
168
system, /* what the current time is */
crypto/krb5/src/util/profile/t_profile.c
137
system("cp test2.ini test3.ini");
crypto/krb5/src/util/profile/t_profile.c
213
system("rm -rf test_include_dir");
crypto/krb5/src/util/profile/t_profile.c
214
system("mkdir test_include_dir");
crypto/krb5/src/util/profile/t_profile.c
215
system("cp test2.ini test_include_dir/a");
crypto/krb5/src/util/profile/t_profile.c
216
system("cp test2.ini test_include_dir/a~");
crypto/krb5/src/util/profile/t_profile.c
217
system("cp test2.ini test_include_dir/b.conf");
crypto/krb5/src/util/profile/t_profile.c
218
system("cp test2.ini test_include_dir/b.conf.rpmsave");
crypto/krb5/src/util/ss/execute_cmd.c
185
system(line_ptr);
crypto/openssh/clientloop.c
387
if (system(cmd) == 0)
crypto/openssh/logintest.c
163
system(cmdstring);
crypto/openssh/logintest.c
181
system(cmdstring);
crypto/openssh/logintest.c
210
system(cmdstring);
crypto/openssl/ssl/ssl_mcnf.c
23
static int ssl_do_config(SSL *s, SSL_CTX *ctx, const char *name, int system)
crypto/openssl/ssl/ssl_mcnf.c
40
if (name == NULL && system)
crypto/openssl/ssl/ssl_mcnf.c
43
if (!system)
crypto/openssl/ssl/ssl_mcnf.c
52
system = 0;
crypto/openssl/ssl/ssl_mcnf.c
56
if (!system)
crypto/openssl/ssl/ssl_mcnf.c
91
return err == 0 || (system && !conf_diagnostics);
include/stdlib.h
119
int system(const char *);
lib/libc/gen/libc_interposing_table.c
39
SLOT(system, __libc_system),
lib/libc/tests/stdlib/system_test.c
26
ATF_REQUIRE_EQ(W_EXITCODE(0, 0), system("true"));
lib/libc/tests/stdlib/system_test.c
36
ATF_REQUIRE_EQ(W_EXITCODE(1, 0), system("false"));
lib/libc/tests/stdlib/system_test.c
50
ATF_REQUIRE_EQ(W_EXITCODE(0, 0), system("touch file"));
lib/libc/tests/stdlib/system_test.c
65
ATF_REQUIRE_EQ(1, system(NULL));
lib/libc/tests/stdlib/system_test.c
72
ATF_REQUIRE_EQ(0, system(NULL));
lib/libc/tests/stdlib/system_test.c
73
ATF_REQUIRE_EQ(W_EXITCODE(127, 0), system("true"));
lib/libc/tests/stdlib/system_test.c
92
return ((void *)(intptr_t)system(cmd));
lib/libthr/thread/thr_syscalls.c
654
SLOT(system);
libexec/bootpd/bootpd.c
769
system(tst); /* Hope this finishes soon... */
libexec/bootpd/hwaddr.c
190
status = system(buf);
libexec/getty/main.c
317
system(IMP);
sbin/camcontrol/modeedit.c
987
if (system(commandline) == -1)
sbin/dump/main.c
380
if (system(snapcmd) != 0)
sbin/mount_fusefs/mount_fusefs.c
407
if (system(bgdaemon))
share/examples/perfmon/perfmon.c
140
system(cmd);
stand/ficl/testmain.c
108
int err = system(pFS->text);
sys/arm/broadcom/bcm2835/bcm2835_machdep.c
73
phandle_t system;
sys/arm/broadcom/bcm2835/bcm2835_machdep.c
77
system = OF_finddevice("/system");
sys/arm/broadcom/bcm2835/bcm2835_machdep.c
78
if (system != -1) {
sys/arm/broadcom/bcm2835/bcm2835_machdep.c
79
len = OF_getencprop(system, "linux,serial", cells,
sys/arm/broadcom/bcm2835/bcm2835_machdep.c
84
len = OF_getencprop(system, "linux,revision", cells,
sys/kern/kern_devctl.c
437
devctl_notify(const char *system, const char *subsystem, const char *type,
sys/kern/kern_devctl.c
443
if (system == NULL || subsystem == NULL || type == NULL)
sys/kern/kern_devctl.c
446
devctl_notify_hook.send_f(system, subsystem, type, data);
sys/kern/kern_devctl.c
451
sbuf_cat(&sb, system);
sys/net/if.c
313
SYSCTL_NODE(_net_link_generic, IFMIB_SYSTEM, system,
sys/netlink/netlink_sysevent.c
126
sysevent_get_group(const char *system)
sys/netlink/netlink_sysevent.c
130
sysevent_new_group(i, system);
sys/netlink/netlink_sysevent.c
133
if (strcmp(sysevent_groups[i].name, system) == 0)
sys/netlink/netlink_sysevent.c
141
sysevent_send(const char *system, const char *subsystem, const char *type,
sys/netlink/netlink_sysevent.c
144
struct sysevent_group *se = sysevent_get_group(system);
sys/netlink/netlink_sysevent.c
148
"too many event groups\n", system);
sys/sys/devctl.h
21
typedef void send_event_f(const char *system, const char *subsystem,
tests/sys/aio/aio_test.c
1000
ATF_REQUIRE_EQ_MSG(0, system(cmd),
tests/sys/aio/aio_test.c
1005
ATF_REQUIRE_EQ_MSG(0, system(cmd),
tests/sys/aio/aio_test.c
1034
system(cmd);
tests/sys/audit/administrative.c
347
system("service auditd onestop > /dev/null 2>&1");
tests/sys/audit/administrative.c
348
system("service auditd onestart > /dev/null 2>&1");
tests/sys/audit/administrative.c
425
ATF_REQUIRE_EQ(0, system("service accounting onestop"));
tests/sys/audit/administrative.c
427
ATF_REQUIRE_EQ(0, system("service accounting onestart"));
tests/sys/fs/fusefs/default_permissions.cc
1450
TEST_F(Setextattr, system)
tests/sys/fs/fusefs/default_permissions.cc
649
TEST_F(Deleteextattr, system)
tests/sys/fs/fusefs/default_permissions.cc
776
TEST_F(Getextattr, system)
tests/sys/fs/fusefs/default_permissions.cc
823
TEST_F(Listextattr, system)
tests/sys/fs/fusefs/xattr.cc
305
TEST_F(Getxattr, system)
tests/sys/fs/fusefs/xattr.cc
687
TEST_F(Listxattr, system)
tests/sys/fs/fusefs/xattr.cc
763
TEST_F(Removexattr, system)
tests/sys/fs/fusefs/xattr.cc
847
TEST_F(Setxattr, system)
tests/sys/kqueue/libkqueue/vnode.c
135
if (system("echo hello >> ./kqueue-test.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
160
if (system("touch ./kqueue-test.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
188
if (system("mv ./kqueue-test.tmp ./kqueue-test2.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
200
if (system("mv ./kqueue-test2.tmp ./kqueue-test.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
241
if (system("touch ./kqueue-test.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
249
if (system("touch ./kqueue-test.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
279
if (system("touch ./kqueue-test.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
293
if (system("touch ./kqueue-test.tmp") < 0)
tests/sys/kqueue/libkqueue/vnode.c
30
system("touch ./kqueue-test.tmp");
tests/sys/net/routing/rtsock_common.h
219
return system(cmd);
tests/sys/net/routing/rtsock_common.h
239
return system(cmd);
tests/sys/net/routing/rtsock_config.h
161
ret = system(cmd);
tests/sys/netinet/raw.c
158
system("/sbin/ifconfig lo0 127.0.0.1/32");
tests/sys/netinet/raw.c
159
system("/sbin/ifconfig lo0 127.0.0.2/32 alias");
tests/sys/netinet/raw.c
260
system("/sbin/ifconfig lo0 127.0.0.1/32");
tools/regression/doat/doat.c
618
system("/bin/sh -c 'rm -rf tmp'");
tools/regression/geom/MdLoad/MdLoad.c
251
error = system(buf);
tools/regression/sockets/unix_gc/unix_gc.c
777
(void)system(cmd);
tools/regression/tmpfs/h_tools.c
140
ec = system(line);
tools/test/stress2/lib/resources.c
202
system("ls -l /tmp/stressX.control");
tools/test/stress2/testcases/run/run.c
73
(void)system(buf);
tools/test/stress2/testcases/rw/rw.c
114
(void)system("find . -delete");
tools/test/stress2/testcases/sysctl/sysctl.c
54
if (system("sysctl -a > /dev/null 2>&1") == -1)
tools/test/stress2/testcases/sysctl/sysctl.c
57
if (system("fstat > /dev/null 2>&1") == -1)
tools/tools/indent_wrapper/indent_wrapper.c
180
system(cc);
tools/tools/net80211/wlanwds/wlanwds.c
512
status = system(cmd);
tools/tools/netmap/nmreplay.c
1381
of the system. For each feature one should define a struct _cfg
tools/tools/netmap/nmreplay.c
1426
If the option is not supplied, the system applies 0 extra delay
usr.bin/ctlstat/ctlstat.c
238
cpu_stats->system = cp_time[CP_SYS];
usr.bin/ctlstat/ctlstat.c
634
ctx->cur_cpu.nice + ctx->cur_cpu.system +
usr.bin/ctlstat/ctlstat.c
88
uint64_t system;
usr.bin/m4/eval.c
258
sysval = system(argv[2]);
usr.bin/msgs/msgs.c
802
system(cmdbuf);
usr.bin/top/machine.c
912
if (!sel->system && (pp->ki_flag & P_SYSTEM) && sel->pid == -1)
usr.bin/top/machine.h
66
bool system; /* show system processes */
usr.bin/top/top.c
1026
ps.system = !ps.system;
usr.bin/top/top.c
1029
ps.system ? "D" : "Not d");
usr.bin/top/top.c
279
ps.system = false;
usr.bin/top/top.c
334
ps.system = true;
usr.bin/top/top.c
375
ps.system = true;
usr.bin/usbhidaction/usbhidaction.c
504
r = system(cmdbuf);
usr.sbin/bhyve/acpi.c
419
err = system(iaslbuf);
usr.sbin/bsdinstall/partedit/gpart_ops.c
494
if (system(command) != 0) {
usr.sbin/bsdinstall/partedit/partedit.c
394
error = system(command);
usr.sbin/dconschat/dconschat.c
1057
system = optarg;
usr.sbin/dconschat/dconschat.c
1110
dc->kd = kvm_open(system, core, NULL,
usr.sbin/dconschat/dconschat.c
994
char devname[256], *core = NULL, *system = NULL;
usr.sbin/fwcontrol/fwdv.c
100
int len, tlen, npad, fd, k, m, vec, system = -1, nb;
usr.sbin/fwcontrol/fwdv.c
191
if (system < 0) {
usr.sbin/fwcontrol/fwdv.c
192
system = ciph->fdf.dv.fs;
usr.sbin/fwcontrol/fwdv.c
193
fprintf(stderr, "%s\n", system_name[system]);
usr.sbin/fwcontrol/fwdv.c
197
if (system == 1 &&
usr.sbin/fwcontrol/fwdv.c
200
nb = nblocks[system];
usr.sbin/fwcontrol/fwdv.c
202
k / (3600 * frame_rate[system]),
usr.sbin/fwcontrol/fwdv.c
203
(k / (60 * frame_rate[system])) % 60,
usr.sbin/fwcontrol/fwdv.c
204
(k / frame_rate[system]) % 60,
usr.sbin/fwcontrol/fwdv.c
205
k % frame_rate[system]);
usr.sbin/fwcontrol/fwdv.c
259
int system=-1, pad_acc, cycle_acc, cycle, f_frac;
usr.sbin/fwcontrol/fwdv.c
342
header = (packets == 0 || packets % npackets[system] == 0);
usr.sbin/fwcontrol/fwdv.c
347
if (system < 0) {
usr.sbin/fwcontrol/fwdv.c
348
system = ((dv->payload[0] & DV_DSF_12) != 0);
usr.sbin/fwcontrol/fwdv.c
349
printf("%s\n", system_name[system]);
usr.sbin/fwcontrol/fwdv.c
351
cycle_acc = frame_cycle[system].d * cycle;
usr.sbin/fwcontrol/fwdv.c
357
if (frames % frame_rate[system] == 0)
usr.sbin/fwcontrol/fwdv.c
360
f_frac = (cycle_acc % frame_cycle[system].d
usr.sbin/fwcontrol/fwdv.c
361
* CYCLE_FRAC) / frame_cycle[system].d;
usr.sbin/fwcontrol/fwdv.c
364
f_cycle = (cycle_acc / frame_cycle[system].d) & 0xf;
usr.sbin/fwcontrol/fwdv.c
369
cycle_acc += frame_cycle[system].n;
usr.sbin/fwcontrol/fwdv.c
370
cycle_acc %= frame_cycle[system].d * 0x10;
usr.sbin/fwcontrol/fwdv.c
376
pad_acc += pad_rate[system].n;
usr.sbin/fwcontrol/fwdv.c
377
if (pad_acc >= pad_rate[system].d) {
usr.sbin/fwcontrol/fwdv.c
378
pad_acc -= pad_rate[system].d;
usr.sbin/kbdmap/kbdmap.c
270
system(cmd);
usr.sbin/kbdmap/kbdmap.c
295
system(cmd);
usr.sbin/kbdmap/kbdmap.c
314
system(kbd_cmd);
usr.sbin/kbdmap/kbdmap.c
823
x11 = system("kbdcontrol -d >/dev/null");
usr.sbin/makefs/cd9660/cd9660_eltorito.c
110
new_image->system = ET_SYS_X86;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
112
new_image->system = ET_SYS_PPC;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
115
new_image->system = ET_SYS_MAC;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
117
new_image->system = ET_SYS_EFI;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
173
if (tmp_image->system != new_image->system)
usr.sbin/makefs/cd9660/cd9660_eltorito.c
185
new_image->platform_id = new_image->system;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
297
ie->system_type[0] = disk->system;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
375
uint8_t system;
usr.sbin/makefs/cd9660/cd9660_eltorito.c
394
system = default_boot_image != NULL ? default_boot_image->system :
usr.sbin/makefs/cd9660/cd9660_eltorito.c
399
valid_entry = cd9660_boot_setup_validation_entry(system);
usr.sbin/makefs/cd9660/cd9660_eltorito.c
669
if (t->system == ET_SYS_MAC)
usr.sbin/makefs/cd9660/cd9660_eltorito.c
671
if (t->system == ET_SYS_PPC)
usr.sbin/makefs/cd9660/cd9660_eltorito.c
693
if (t->system != ET_SYS_PPC)
usr.sbin/makefs/cd9660/cd9660_eltorito.c
733
if (t->system != ET_SYS_MAC)
usr.sbin/makefs/cd9660/cd9660_eltorito.h
149
u_char system;
usr.sbin/mptable/mptable.c
913
system( "dmesg" );
usr.sbin/newsyslog/newsyslog.c
2103
kres = system(tmp);
usr.sbin/pmcannotate/pmcannotate.c
449
if (system(tmpf) != 0)
usr.sbin/pmcannotate/pmcannotate.c
780
if (system(tmpf) != 0)
usr.sbin/ppp/iface.c
463
if (!iface->addr[n].system && (how & IFACE_SYSTEM))
usr.sbin/ppp/iface.c
572
newaddr.system = !!(how & IFACE_SYSTEM);
usr.sbin/ppp/iface.h
32
unsigned system : 1; /* System alias ? */
usr.sbin/watchdogd/watchdogd.c
339
failed = system(test_cmd);