Home
last modified time | relevance | path

Searched refs:rc (Results 1 – 5 of 5) sorted by relevance

/coreutils/src/
Dselinux.c77 int rc = -1; in computecon() local
89 rc = security_compute_create (scon, tcon, tclass, con); in computecon()
97 return rc; in computecon()
113 int rc = -1; in defaultcon() local
155 rc = setfscreatecon (constr); in defaultcon()
165 return rc; in defaultcon()
180 int rc = -1; in restorecon_private() local
192 return rc; in restorecon_private()
196 return rc; in restorecon_private()
198 rc = lsetfilecon (path, tcon); in restorecon_private()
[all …]
/coreutils/tests/rm/
Dfail-eperm.xpl92 my $rc = $?;
98 if ($rc == 0)
104 if (0x80 < $rc)
106 my $status = $rc >> 8;
114 my $sig_num = $rc & 0x7F;
/coreutils/tests/
DCoreutils.pm487 my $rc = 0xffff & system $cmd_str;
495 if ($rc == 0xff00)
502 $rc >>= 8 if $rc > 0x80;
503 if ($expect->{EXIT} != $rc)
506 . " expected $expect->{EXIT}, got $rc\n";
/coreutils/tests/du/
Dthreshold.sh126 rc=0
127 du -B1 $args a > out1 2>&1 || { cat out1 ; rc=1 ; }
132 compare exp out || { cat out1 ; rc=1 ; }
133 return $rc
/coreutils/tests/tail/
Dretry.sh115 rc=$?
122 [ $rc = 1 ] || { fail=1; cat out; }