Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/fs.d/nfs/svc/
H A Dnfs-server176 tports=`$SERVINFO -R -p -t -s "mountd" 2>/dev/null`
178 if [ -n "$tports" -o -n "$tports6" ]; then
179 tports=`unique_ports $tports $tports6`
180 for tport in $tports; do
217 if [ -n "$tports" -o -n "$tports6" ]; then
218 tports=`unique_ports $tports $tports6`
219 for tport in $tports; do
272 tports=`$SERVINFO -p -t -s $iana_name 2>/dev/null`
280 if [ -n "$tports" -o -n "$tports6" ]; then
281 tports=`unique_ports $tports $tports6`
[all …]
/illumos-gate/usr/src/cmd/ypcmd/
H A Dyp.sh58 tports=`$SERVINFO -R -p -t -s $iana_name 2>/dev/null`
83 if [ -n "$tports" -o -n "$tports_6" ]; then
84 for tport in $tports $tports_6; do
/illumos-gate/usr/src/cmd/ssh/etc/
H A Dsshd60 tports=`grep "^Port" /etc/ssh/sshd_config 2>/dev/null | \
65 for port in $tports; do
/illumos-gate/usr/src/cmd/svc/shell/
H A Dipf_include.sh632 tports=`$SERVINFO -R -p -t -s $iana_name 2>/dev/null`
634 if [ -n "$tports" -o -n "$tports6" ]; then
635 tports=`unique_ports $tports $tports6`
636 for tport in $tports; do
/illumos-gate/usr/src/lib/fm/topo/modules/common/ses/
H A Dses.c1324 char **tports; in ses_create_disk() local
1327 tports = topo_mod_zalloc(mod, sizeof (char *) * nsas); in ses_create_disk()
1328 if (tports != NULL) { in ses_create_disk()
1333 tports[i] = scsi_wwn_to_wwnstr(wwn, 1, NULL); in ses_create_disk()
1334 if (tports[i] == NULL) in ses_create_disk()
1342 TOPO_PROP_IMMUTABLE, (const char **)tports, in ses_create_disk()
1346 if (tports[i] != NULL) in ses_create_disk()
1347 scsi_free_wwnstr(tports[i]); in ses_create_disk()
1348 topo_mod_free(mod, tports, sizeof (char *) * nsas); in ses_create_disk()