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

1234567891011

/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DProcessState.java67 return (newInstance != null && oldInstance != null &&
129 * terminated the target process, {@code null} if the process was
132 * @param processExitStatus target process exit status, {@code null}
136 * null}
184 if (state == null) {
185 throw new NullPointerException("process state is null");
203 * @return non-null target process state
226 * @return termination signal name, {@code null} if the process was
239 * @return exit status, or {@code null} i
[all...]
H A DPrintfRecord.java63 return (newInstance != null && oldInstance != null &&
94 * elements is {@code null}, or if the given formatted string is
95 * {@code null}
109 if (formattedString == null) {
110 throw new NullPointerException("formatted string is null");
112 if (records == null) {
113 throw new NullPointerException("list of format args is null");
116 if (r == null) {
117 throw new NullPointerException("format arg is null");
[all...]
H A DTuple.java80 return (newInstance != null && oldInstance != null &&
108 * elements is {@code null}
114 if (tupleElements == null) {
115 throw new NullPointerException("null array");
118 if (r == null) {
119 throw new NullPointerException("null element");
131 * elements is {@code null}
137 if (tupleElements == null) {
138 throw new NullPointerException("element list is null");
[all...]
H A DExitRecord.java63 return (newInstance != null && oldInstance != null &&
H A DProbeInfo.java74 return (newInstance != null && oldInstance != null &&
94 * @throws NullPointerException if any parameter is null
108 if (probeAttributes == null) {
109 throw new NullPointerException("probeAttributes is null");
111 if (argumentAttributes == null) {
112 throw new NullPointerException("argumentAttributes is null");
119 * @return non-null attributes including stability levels and
131 * @return non-null attributes including stability levels and
H A DProgramInfo.java67 return (newInstance != null && oldInstance != null &&
96 * minStatementAttr} is {@code null}
116 if (minimumProbeAttributes == null) {
117 throw new NullPointerException("minimumProbeAttributes is null");
119 if (minimumStatementAttributes == null) {
121 "minimumStatementAttributes is null");
133 * @return non-null interface attributes describing the minimum
146 * @return non-null interface attributes describing the minimum
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DRequestHandler.java54 private InetAddress interfac = null; // Interface on which request came in.
55 private Socket sock = null; // Socket for incoming stream request.
56 private DatagramPacket packet = null; // Packet for datagram requests.
57 private InetAddress clientAddr = null; // Internet address of the client.
59 private ServiceTable serviceTable = null;
60 private SrvLocMsg toForward = null; // Reg or dereg to forward.
61 private InputStream inStream = null;
62 private OutputStream outStream = null;
71 if (sock != null) sock.close();
77 sock = null;
[all...]
H A DServiceStoreFactory.java100 Class storeClass = null;
115 ServiceStore store = null;
224 String surl = null;
225 String slang = null;
226 String slifetime = null;
227 String sType = null;
242 slang = null;
253 if (surl == null || slifetime == null || slang == null) {
[all...]
H A DSLPTemplateRegistry.java95 private static TemplateRegistry registry = null;
121 * if the scope vector is null or
126 * @exception IllegalArgumentException Thrown if any parameters are null.
148 if (language == null || language.length() <= 0) {
156 String turl = null;
178 if (turl != null) {
233 if (serviceAgent == null) {
255 * @param <i>version</i> Version of the template, null for latest.
258 * @exception IllegalArgumentException Thrown if the parameter is null.
281 if (turl == null) {
[all...]
H A DSSrvDereg.java51 ServiceURL URL = null; // the service URL.
52 Hashtable URLSignature = null; // Authentication block.
53 Vector tags = null; // Vector of String
95 // If no tags, then set the tags vector to null. This indicates
99 tags = null;
H A DServiceStoreInMemory.java75 Parser.ParserRecord prReturns = null;
76 private Vector scopes = null;
91 if (services.get(surl) == null) {
111 if (sig != null) {
131 private Vector attrTags = null; // tags to match against records
133 private Vector ret = null; // for returns.
145 if (alreadySeen.get(rec) == null) {
172 private Vector records = null; // for returns.
173 private Vector scopes = null; // the scopes we're looking for
185 if (alreadySeen.get(rec) == null) {
[all...]
H A DServiceTable.java64 protected ServiceStore store = null;
71 static protected SLPConfig conf = null;
75 static protected ServiceTable table = null;
79 static protected AgerThread thrAger = null;
93 if (thrAger != null) {
120 if (conf == null) {
125 if (table == null) {
166 if (serializedURL != null) {
170 if (serStore != null) {
228 ServiceStore serStore = null;
[all...]
H A DSSrvMsg.java176 Hashtable auth = null;
178 if (URLSignatures != null) {
182 auth = null;
183 if (selectedAuth != null) {
189 (auth != null ?
198 (auth != null),
H A DAuthBlock.java68 * @return A Hashtable of AuthBlocks, one for each SPI, null if no
74 * @exception IllegalArgumentException If any of the parameters are null
81 if (spis == null) {
112 * @exception IllegalArgumentException If any of the parameters are null
146 * @exception IllegalArgumentException If authBlocks is null or empty.
167 * @exception IllegalArgumentException If authBlocks is null or empty.
196 * @exception IllegalArgumentException If any parameters are null, or
221 * @exception IllegalArgumentException If authBlocks is null or empty.
243 if (authBlocks == null) {
244 return "null";
[all...]
H A DDATable.java81 Vector scopes = null; // String scope names
142 if (daEquivClasses != null) {
183 if (daTable != null) {
206 if (className == null) {
212 Class tclass = null;
245 return null;
262 if (filter != null && !(filter.size() <= 0)) {
285 InetAddress addr = null;
306 DARecord rec = null;
364 if (scopes == null || scope
[all...]
H A DActiveDiscoverer.java52 static private SLPConfig config = null;
56 private CSrvMsg activeMsg = null;
64 private ServerDATable table = null;
68 private Vector useScopes = null;
72 private InetAddress address = null;
89 if (config == null) {
196 mySPIs = mySPIs == null ? "" : mySPIs;
236 // Set the previous responders list to null. Otherwise,
278 SrvLocMsg reply = null;
H A DServiceLocationEnumerator.java61 if (v != null) {
H A DSrvLocMsgImpl.java48 protected SrvLocHeader hdr = null;
/osnet-11/usr/src/lib/libsecdb/
H A Dsvc-rbac56 if ! grep -s "$phrase" $f > /dev/null 2>&1; then
57 echo /dev/null $f | $irbac
/osnet-11/usr/src/cmd/perl/5.8.4/
H A Dget_no_keywords.sh48 elif [[ $(sccs get -kp $file 2>/dev/null | cksum) \
56 sccs get $file 2>/dev/null
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/DBM_Filter/
H A Dnull.pm1 package DBM_Filter::null ;
24 =head1 DBM_Filter::null
32 $db->Filter_Push('null');
36 This filter ensures that all data written to the DBM file is null
39 common issue is for the C application to include the terminating null
/osnet-11/usr/src/lib/libc/amd64/gen/
H A Dstrchr.s35 testb %dl,%dl / is it null?
41 testb %dl,%dl / is it null?
47 testb %dl,%dl / is it null?
54 testb %dl,%dl / is it null?
/osnet-11/usr/src/lib/libpp/common/
H A Dppdata.c71 static char null[1]; variable
75 &null[0] /* nextchr */
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwin_wchn.c53 cchar_t *cp, null = { 0 }; local
69 * null terminate the buffer.
72 *ccs = null;
/osnet-11/usr/src/lib/brand/solaris10/cmd/
H A Ds10_net_include.sh180 /sbin/ifconfig $1 >/dev/null 2>&1 && return 1
181 /sbin/ifconfig $1 inet6 >/dev/null 2>&1 && return 1
182 /sbin/ifconfig $1 $3 ipmp group $2 2>/dev/null
305 macaddrtype=`/sbin/dladm show-vnic $1 -o MACADDRTYPE -p 2>/dev/null`
536 /sbin/ifconfig $grifname $type $line >/dev/null
550 addif $two >/dev/null
570 pif=`/sbin/ipadm show-if -o persistent -p $1 2>/dev/null | egrep '4|6'`
584 /sbin/ifconfig $1 plumb > /dev/null 2>&1
621 $process_func /sbin/ifconfig $1 $type < $hostpfx.$1 >/dev/null
656 system/svc/restarter:default 2>/dev/null`
[all...]

Completed in 45 milliseconds

1234567891011