Searched refs:null (Results 26 - 50 of 745) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DPrintaRecord.java101 return (newInstance != null && oldInstance != null &&
149 * empty or {@code null} map if an incomplete {@code printa()}
160 * aggregations is {@code null}, or if the given ordered lists of
161 * tuples or formatted strings are {@code null}
172 if (aggs != null) {
176 if (formattedOutput != null) {
180 if (orderedTuples != null) {
194 if (aggregations == null) {
195 throw new NullPointerException("aggregations list is null");
[all...]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSARequester.java54 private static PermSARegTable pregtable = null;
56 private static SLPConfig config = null;
76 if (config == null) {
81 if (pregtable == null) {
114 * @exception IllegalArgumentException A parameter is null or
140 deregisterInternal(URL, null);
183 if (attributeIds == null || attributeIds.size() <= 0) {
234 null,
235 null);
258 null,
[all...]
H A DSAttrMsg.java51 ServiceURL URL = null; // nonNull if a URL query.
52 String serviceType = null; // nonNull if a service type query.
93 serviceType = null;
103 URL = null;
130 (URL != null ?
150 if (auth != null) {
152 auth = null;
153 if (selectedAuth != null) {
161 hdr.parseAttributeVectorOut(attrs, 0, (auth != null),
H A DServiceLocationManager.java52 protected static DATable dat = null;
53 protected static SLPConfig config = null;
57 protected static Class locatorClass = null;
58 protected static Class advertiserClass = null;
64 * functionality is not available, returns null.
66 * @param locale The Locale of the Locator object. Use null for default.
77 if (locale == null) {
85 if (locator == null) {
87 if (locatorClass == null) {
90 if (className == null) {
[all...]
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dheredoc.sh45 cmp $f $g 2> /dev/null || err_exit "'hello world' quoted here doc not working"
49 cmp $f $g 2> /dev/null || err_exit "'hello world' tabbed here doc not working"
53 cmp $f $g 2> /dev/null || err_exit "'hello world' quoted tabbed here doc not working"
58 cmp $f $g 2> /dev/null || err_exit "'$x world' here doc not working"
62 cmp $f $g 2> /dev/null || err_exit "'$(print hello) world' here doc not working"
72 cmp $f $g 2> /dev/null || err_exit "unquoted here doc not working"
81 cat > /dev/null <<EOF # comments should not cause core dumps
87 cmp /dev/null $g 2> /dev/null || err_exit "empty here doc not working"
110 ' 2> /dev/null || err_exi
[all...]
H A Dalias.sh57 alias foo 2> /dev/null && err_exit "alias for non-existent alias foo returns true"
70 if [[ $(!! hello 2>/dev/null) != hello ]]
78 if [[ $(foo bar 2> /dev/null) != bar ]]
81 builtin -d rm 2> /dev/null
82 if whence rm > /dev/null
87 if hash -r 2>/dev/null && [[ ! $(hash) ]]
92 hash -r -- $i 2>/dev/null || err_exit "hash -r -- $i failed"
97 ( alias :pr=print) 2> /dev/null || err_exit 'alias beginning with : fails'
98 ( alias p:r=print) 2> /dev/null || err_exit 'alias with : in name fails'
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DBST.java43 public BST left = null;
44 public BST right = null;
45 public BST parent = null;
53 left = right = null;
59 this(new BSTItem("", null));
71 BST node = null;
77 if (left != null)
82 if (right != null)
107 BST rv = null;
113 if (left != null)
[all...]
H A DpmGuiException.java38 String s = null;
H A DpmMessageDialog.java42 pmButton helpButton = null;
43 pmButton okButton = null;
44 JList theText = null;
45 pmTop theTop = null;
46 String helpTag = null;
50 this(null, title, msg, null, null);
54 this(f, title, msg, null, null);
[all...]
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
H A DDoPrinterDelete.java43 Printer p = null;
73 String err = null;
74 String cmd = null;
75 SysCommand syscmd = null;
102 if (err != null) {
105 syscmd = null;
107 curr = null;
149 h = null;
163 String cmd = null;
164 String err = null;
[all...]
H A DDoPrinterView.java93 String o = null;
95 String printserver = null;
96 String comment = null;
97 String extensions = null;
102 String err = null;
114 syscmd = null;
118 syscmd = null;
120 if (o == null) {
154 if ((def != null) && (def.equals(printername))) {
174 String str = null;
[all...]
H A DNameService.java35 private String nameservice = null;
36 private String nshost = null;
37 private String user = null;
38 private String passwd = null;
77 if (master == null) {
84 if (admin == null) {
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/scripting/
H A Dtst.ppid.ksh70 chmod 555 $dfilename >/dev/null 2>&1
78 $dfilename $$ >/dev/null 2>&1
/illumos-gate/usr/src/tools/codesign/
H A Dfindcrypto.sh56 s=`elfsign list -f signer -e $f 2>/dev/null`
63 if expr "$s" : ".*${regex[i]}" >/dev/null; then
/illumos-gate/usr/src/lib/libast/common/features/
H A Dparam.sh43 if $cc -c $tmp.c >/dev/null
H A Dpreroot.sh29 if /etc/preroot / /bin/echo >/dev/null
/illumos-gate/usr/src/lib/brand/solaris10/cmd/
H A Ds10_isaexec_wrapper.sh47 echo $dname | /usr/bin/grep "^/" >/dev/null || dname=`/bin/pwd`/$dname
48 dname=`(cd $dname 2>/dev/null && /bin/pwd 2>/dev/null)`
51 >/dev/null && arch64=/64/
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pid/
H A Dtst.killonerror.ksh39 rc=`$dtrace -c date -n jarod 2>/dev/null | /usr/bin/wc -l`
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/profile-n/
H A Dtst.func.ksh48 /usr/bin/date > /dev/null
70 script | tee /dev/fd/2 | grep mutex_enter > /dev/null
H A Dtst.mod.ksh48 /usr/bin/date > /dev/null
66 script | tee /dev/fd/2 | grep unix > /dev/null
H A Dtst.sym.ksh48 /usr/bin/date > /dev/null
66 script | tee /dev/fd/2 | grep mutex_enter > /dev/null
/illumos-gate/usr/src/cmd/initpkg/init.d/
H A Duucp35 /usr/bin/rm -rf /usr/spool/locks/* >/dev/null 2>&1 &
/illumos-gate/usr/src/cmd/svr4pkg/pkgscripts/
H A Di.preserve.sh33 [ "$src" = /dev/null ] && continue
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_set/
H A Dzpool_set_001_pos.ksh47 zpool set > /dev/null 2>&1
/illumos-gate/usr/src/test/zfs-tests/tests/functional/rename_dirs/
H A Drename_dirs_001_pos.ksh65 pgrep $RENAME_DIRS >/dev/null 2>&1
68 pkill -9 $RENAME_DIRS >/dev/null 2>&1

Completed in 90 milliseconds

1234567891011>>