HomeSort by relevance Sort by last modified time
    Searched refs:os (Results 1 - 25 of 703) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /pkg/on_ips/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
Record.java 9 * or http://www.opensolaris.org/os/licensing.
28 package org.opensolaris.os.dtrace;
AggregationValue.java 9 * or http://www.opensolaris.org/os/licensing.
28 package org.opensolaris.os.dtrace;
ExceptionHandler.java 9 * or http://www.opensolaris.org/os/licensing.
28 package org.opensolaris.os.dtrace;
ValueRecord.java 9 * or http://www.opensolaris.org/os/licensing.
28 package org.opensolaris.os.dtrace;
SymbolValueRecord.java 9 * or http://www.opensolaris.org/os/licensing.
28 package org.opensolaris.os.dtrace;
  /pkg/on_ips/usr/src/uts/common/sys/
req.flg 11 # or http://www.opensolaris.org/os/licensing.
29 echo_file usr/src/uts/common/os/priv_defs
30 echo_file usr/src/uts/common/os/privs.awk
  /pkg/2008.11/src/tests/api/
t_elf.py 10 # or http://www.opensolaris.org/os/licensing.
28 import os
32 path_to_parent = os.path.join(os.path.dirname(__file__), "..")
42 if os.path.exists("/usr/bin/cat"):
46 if os.path.exists("/etc/motd"):
50 if os.path.exists("/dev/ksyms"):
54 if os.path.exists("/usr/lib/libmlib.so"):
58 if os.path.exists("/kernel/drv/sd"):
62 if os.path.exists("/kernel/drv/amd64/sd")
    [all...]
t_plat.py 10 # or http://www.opensolaris.org/os/licensing.
27 import os
38 path_to_parent = os.path.join(os.path.dirname(__file__), "..")
53 if os.name == 'posix' and os.getuid() == 0:
55 if os.name == 'posix' and os.getuid() != 0:
70 os.write(fd1, "foo")
72 os.write(fd2, "bar"
    [all...]
t_misc.py 10 # or http://www.opensolaris.org/os/licensing.
27 import os
37 path_to_parent = os.path.join(os.path.dirname(__file__), "..")
45 self.assertEqual(fn, os.path.join("ab", "cdefgh", "abcdefghijklmnopqrstuvwxyz"))
50 os.chmod(tmpdir, stat.S_IRWXU)
51 fpath = os.path.join(tmpdir, "f")
52 fopath = os.path.join(fpath, "o")
53 foopath = os.path.join(fopath, "o")
59 assert(os.stat(tmpdir).st_mode & (stat.S_IREAD | stat.S_IWRITE) != 0
    [all...]
  /pkg/2009.06/src/tests/api/
t_elf.py 10 # or http://www.opensolaris.org/os/licensing.
28 import os
32 path_to_parent = os.path.join(os.path.dirname(__file__), "..")
42 if os.path.exists("/usr/bin/cat"):
46 if os.path.exists("/etc/motd"):
50 if os.path.exists("/dev/ksyms"):
54 if os.path.exists("/usr/lib/libmlib.so"):
58 if os.path.exists("/kernel/drv/sd"):
62 if os.path.exists("/kernel/drv/amd64/sd")
    [all...]
t_plat.py 10 # or http://www.opensolaris.org/os/licensing.
27 import os
38 path_to_parent = os.path.join(os.path.dirname(__file__), "..")
53 if os.name == 'posix' and os.getuid() == 0:
55 if os.name == 'posix' and os.getuid() != 0:
70 os.write(fd1, "foo")
72 os.write(fd2, "bar"
    [all...]
t_misc.py 10 # or http://www.opensolaris.org/os/licensing.
27 import os
37 path_to_parent = os.path.join(os.path.dirname(__file__), "..")
45 self.assertEqual(fn, os.path.join("ab", "cdefgh", "abcdefghijklmnopqrstuvwxyz"))
50 os.chmod(tmpdir, stat.S_IRWXU)
51 fpath = os.path.join(tmpdir, "f")
52 fopath = os.path.join(fpath, "o")
53 foopath = os.path.join(fopath, "o")
59 assert(os.stat(tmpdir).st_mode & (stat.S_IREAD | stat.S_IWRITE) != 0
    [all...]
  /pkg/on_ips/usr/src/uts/common/fs/zfs/
dmu_objset.c 9 * or http://www.opensolaris.org/os/licensing.
45 dmu_objset_spa(objset_t *os)
47 return (os->os_spa);
51 dmu_objset_zil(objset_t *os)
53 return (os->os_zil);
57 dmu_objset_pool(objset_t *os)
61 if ((ds = os->os_dsl_dataset) != NULL && ds->ds_dir)
64 return (spa_get_dsl(os->os_spa));
68 dmu_objset_ds(objset_t *os)
70 return (os->os_dsl_dataset)
102 objset_t *os = arg; local
115 objset_t *os = arg; local
128 objset_t *os = arg; local
142 objset_t *os = arg; local
160 objset_t *os = arg; local
174 objset_t *os = arg; local
188 objset_t *os = arg; local
217 objset_t *os; local
535 objset_t *os; local
642 objset_t *os; local
733 objset_t *os; local
754 objset_t *os = arg1; local
766 objset_t *os = arg1; local
784 objset_t *os; local
857 objset_t *os = dst->dst_arg1; local
904 objset_t *os = arg; local
928 objset_t *os = arg; local
    [all...]
  /pkg/2008.11/src/modules/actions/
hardlink.py 10 # or http://www.opensolaris.org/os/licensing.
33 import os
51 # both need to be passed through os.path.normpath to ensure
56 target = os.path.normpath(
57 os.path.join(os.path.split(path)[0], target))
59 target = os.path.normpath(target)[1:]
69 path = os.path.normpath(os.path.sep.join(
72 if not os.path.exists(os.path.dirname(path))
    [all...]
  /pkg/2009.06/src/modules/actions/
hardlink.py 10 # or http://www.opensolaris.org/os/licensing.
34 import os
54 # both need to be passed through os.path.normpath to ensure
59 target = os.path.normpath(
60 os.path.join(os.path.split(path)[0], target))
62 target = os.path.normpath(target)[1:]
72 path = os.path.normpath(os.path.sep.join(
75 if not os.path.exists(os.path.dirname(path))
    [all...]
link.py 10 # or http://www.opensolaris.org/os/licensing.
33 import os
51 os.path.sep)
62 path = os.path.normpath(os.path.sep.join(
65 if not os.path.exists(os.path.dirname(path)):
66 self.makedirs(os.path.dirname(path), mode=0755)
70 if os.path.lexists(path):
72 os.unlink(path
    [all...]
  /pkg/on_ips/usr/src/psm/stand/lib/boot/
inc.flg 11 # or http://www.opensolaris.org/os/licensing.
30 echo_file usr/src/uts/sparc/os/bootops.c
  /pkg/gate/src/modules/actions/
hardlink.py 10 # or http://www.opensolaris.org/os/licensing.
35 import os
56 # both need to be passed through os.path.normpath to ensure
61 target = os.path.normpath(
62 os.path.join(os.path.split(path)[0], target))
64 target = os.path.normpath(target)[1:]
74 path = os.path.normpath(os.path.sep.join(
77 if not os.path.exists(os.path.dirname(path))
    [all...]
  /pkg/on_ips/usr/src/grub/grub-0.97/
config.sub 117 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
118 # Here we must recognize all the valid KERNEL-OS combinations.
123 os=-$maybe_os
129 then os=`echo $1 | sed 's/.*-/-/'`
130 else os=; fi
138 case $os in
139 -sun*os*)
149 os=
153 os
    [all...]
  /pkg/on_ips/usr/src/lib/libinetutil/common/
ofmt.c 9 * or http://www.opensolaris.org/os/licensing.
187 ofmt_state_t *os; local
228 os = calloc(sizeof (ofmt_state_t) +
230 if (os == NULL)
232 *ofmt = os;
233 os->os_fields = (ofmt_field_t *)&os[1];
234 os->os_parsable = parsable;
235 os->os_wrap = wrap;
237 os->os_multiline = multiline
300 ofmt_state_t *os = ofmt; local
413 ofmt_state_t *os = ofmt; local
514 ofmt_state_t *os = ofmt; local
530 ofmt_state_t *os = ofmt; local
    [all...]
  /pkg/gate/src/tests/api/
t_elf.py 10 # or http://www.opensolaris.org/os/licensing.
28 import os
32 path_to_parent = os.path.join(os.path.dirname(__file__), "..")
42 if os.path.exists("/usr/bin/cat"):
46 if os.path.exists("/etc/motd"):
50 if os.path.exists("/dev/ksyms"):
54 if os.path.exists("/usr/lib/libmlib.so"):
58 if os.path.exists("/kernel/drv/sd"):
62 if os.path.exists("/kernel/drv/amd64/sd")
    [all...]
  /pkg/2008.11/src/modules/portable/
util.py 10 # or http://www.opensolaris.org/os/licensing.
25 import os
31 Return a standardized, lower case version of the "type" of OS family.
33 if os.name == 'posix':
35 elif os.name == 'mac':
38 elif os.name == 'nt':
45 Return a standardized, lower case version of the name of the OS. This is
46 useful to avoid the ambiguity of OS marketing names.
69 this OS.
75 release = os.uname()[2
    [all...]
  /pkg/2009.06/src/modules/portable/
util.py 10 # or http://www.opensolaris.org/os/licensing.
25 import os
31 Return a standardized, lower case version of the "type" of OS family.
33 if os.name == 'posix':
35 elif os.name == 'mac':
38 elif os.name == 'nt':
45 Return a standardized, lower case version of the name of the OS. This is
46 useful to avoid the ambiguity of OS marketing names.
69 this OS.
75 release = os.uname()[2
    [all...]
  /pkg/gate/src/modules/portable/
util.py 10 # or http://www.opensolaris.org/os/licensing.
25 import os
31 Return a standardized, lower case version of the "type" of OS family.
33 if os.name == 'posix':
35 elif os.name == 'mac':
38 elif os.name == 'nt':
45 Return a standardized, lower case version of the name of the OS. This is
46 useful to avoid the ambiguity of OS marketing names.
69 this OS.
75 release = os.uname()[2
    [all...]
  /pkg/on_ips/usr/src/cmd/man/src/util/nsgmls.src/lib/
MessageReporter.cxx 24 MessageReporter::MessageReporter(OutputCharStream *os)
25 : os_(os), options_(0)
34 void MessageReporter::setMessageStream(OutputCharStream *os)
36 if (os != os_) {
38 os_ = os;
52 os() << programName_ << ':';
55 os() << ':';
58 os() << (unsigned long)message.type->module() << "."
62 formatFragment(MessageReporterMessages::infoTag, os());
65 formatFragment(MessageReporterMessages::warningTag, os());
    [all...]

Completed in 1200 milliseconds

1 2 3 4 5 6 7 8 91011>>