Home | History | Annotate | Download | only in src

Lines Matching refs:rest

426 	local($type, $perm, $rest, $c, $len, $name);
432 ($type, $perm, $rest) =
434 $c = substr($rest, 0, 1);
435 $len = index($rest, $c, 1) - 1;
436 $name = substr($rest, 1, $len);
437 $rest = substr($rest, 2 + $len);
440 return undef if !&write_file($name, $rest);
454 local($ret) = symlink($rest, $name);
938 local($type, $perm, $rest, $c, $len, $name);
946 ($type, $perm, $rest) = ($1, $2, $3);
957 $c = substr($rest, 0, 1);
958 if (($len = index($rest, $c, 1) - 1) <= 0) {
960 "$prog:$file:$.: missing end quote for file name in file-setup: $rest\n";
963 $name = substr($rest, 1, $len);
975 $rest, $c, $len, $name);
983 ($type, $perm, $uid, $gid, $matchType, $rest)
1010 $c = substr($rest, 0, 1);
1011 if (($len = index($rest, $c, 1) - 1) <= 0) {
1013 "$prog:$file:$.: missing end quote for file name in file-result: $rest\n";
1016 $name = substr($rest, 1, $len);
1159 local($type, $perm, $uid, $gid, $rest, $c, $len, $name);
1166 ($type, $perm, $uid, $gid, $matchType, $rest) =
1168 $c = substr($rest, 0, 1);
1169 $len = index($rest, $c, 1) - 1;
1170 $name = substr($rest, 1, $len);
1171 $rest = substr($rest, 2 + $len);
1201 $matchType eq 'exact' ? $rest : undef
1202 $matchType eq 'pattern' ? $rest : undef);
1207 if ($rest !~ /^\s*$/) {
1225 $matchType eq 'exact' ? $rest
1226 $matchType eq 'pattern' ? $rest : undef);