HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 2651 - 2675 of 19630) sorted by null

<<101102103104105106107108109110>>

  /libcore/crypto/src/main/java/org/conscrypt/
SSLEngineAppData.java 44 if (buffer != null) {
57 if (buffer == null) {
89 buffer = null;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
WrappedCharBufferTest1.java 32 baseBuf = null;
33 buf = null;
79 CharBuffer.wrap((char[])null, -1, 0);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
AbstractSelectionKeyTest.java 57 return null;
61 return null;
69 return null;
  /libcore/luni/src/main/java/java/io/
FilterOutputStream.java 59 Throwable thrown = null;
69 if (thrown == null) {
74 if (thrown != null) {
ObjectStreamField.java 58 * if {@code name} or {@code cl} is {@code null}.
61 if (name == null) {
62 throw new NullPointerException("name == null");
63 } else if (cl == null) {
64 throw new NullPointerException("cl == null");
82 * if {@code name} or {@code cl} is {@code null}.
86 if (name == null) {
87 throw new NullPointerException("name == null");
88 } else if (cl == null) {
89 throw new NullPointerException("cl == null");
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
LDAPCertStoreParameters.java 43 * is {@code serverName} is {@code null}.
46 if (serverName == null) {
47 throw new NullPointerException("serverName == null");
71 * if {@code serverName} is {@code null}.
74 if (serverName == null) {
75 throw new NullPointerException("serverName == null");
90 return null;
PKIXCertPathValidatorResult.java 54 if (this.trustAnchor == null) {
55 throw new NullPointerException("trustAnchor == null");
57 if (this.subjectPublicKey == null) {
58 throw new NullPointerException("subjectPublicKey == null");
115 sb.append(policyTree == null ? "no valid policy tree\n"
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 75 String theDriverList = System.getProperty("jdbc.drivers", null);
76 if (theDriverList == null) {
120 if (driver == null) {
138 * {@code null} if no connection can be established.
160 * {@code null} if no connection can be established.
169 if (url == null) {
170 throw new SQLException("The url cannot be null", sqlState);
180 if (theConnection != null) {
199 * {@code null} if no connection can be established.
207 if (user != null) {
    [all...]
  /libcore/luni/src/main/java/java/util/
Stack.java 23 * including null objects. There is no limit to the size of the stack.
77 elementData[index] = null;
108 if (o != null) {
116 if (dumpArray[i] == null) {
  /libcore/luni/src/main/java/java/util/regex/
PatternSyntaxException.java 35 * Holds the description of the syntax error, or null if the description is
41 * Holds the syntactically incorrect regular expression, or null if the
57 * the description of the syntax error, or {@code null} if the
61 * {@code null} if the regular expression is not known.
92 if (desc != null) {
97 if (desc != null) {
105 if (pattern != null) {
122 * Returns the description of the syntax error, or {@code null} if the
  /libcore/luni/src/main/java/javax/crypto/spec/
OAEPParameterSpec.java 72 * <code>pSrc</code> is null.
76 if (mdName == null) {
77 throw new NullPointerException("mdName == null");
78 } else if (mgfName == null) {
79 throw new NullPointerException("mgfName == null");
80 } else if (pSrc == null) {
81 throw new NullPointerException("pSrc == null");
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
TimeStampReq.java 107 if (encoding == null) {
173 String objID = (values[2] == null) ? null : ObjectIdentifier
175 BigInteger nonce = (values[3] == null) ? null : new BigInteger(
178 if (values[5] == null) {
185 null,
205 values[2] = (req.reqPolicy == null) ? null : ObjectIdentifier
207 values[3] = (req.nonce == null) ? null : req.nonce.toByteArray()
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeExceptionTest.java 31 re = new RuntimeException(null, npe);
34 re = new RuntimeException(message, null);
43 re = new RuntimeException((Throwable) null);
  /libcore/luni/src/test/java/libcore/java/util/
EventObjectTest.java 28 new EventObject(null);
50 return a.getSource() == null
51 || b.getSource() == null
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
GuardedObjectTest.java 36 /** Null guard imposes no restriction. */
38 Object obj = null;
39 GuardedObject go = new GuardedObject(obj, null);
43 go = new GuardedObject(obj, null);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentTypeInternalSubset.java 12 * Create a new DocumentType node with null values for publicId and systemId.
13 * Verify that its internal subset is null.
40 factory = null;
41 builder = null;
56 String nullNS = null;
DocumentTypePublicId.java 61 factory = null;
62 builder = null;
75 String nullNS = null;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyTrustManagerFactorySpi.java 36 if (ks == null) {
37 throw new KeyStoreException("Not supported operation for null KeyStore");
43 if (spec == null) {
44 throw new InvalidAlgorithmParameterException("Null parameter");
58 return null;
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
MyTrustManagerFactorySpi.java 36 if (ks == null) {
37 throw new KeyStoreException("Not supported operation for null KeyStore");
43 if (spec == null) {
44 throw new InvalidAlgorithmParameterException("Null parameter");
58 return null;
TrustManagerFactorySpiImpl.java 14 private static KeyStore ks = null;
15 private static ManagerFactoryParameters spec = null;
29 return null;
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 17 * must be passed explicitly. If no name of parser factory was passed (or is null)
104 return value != null ? value.booleanValue() : false;
170 if (parserClasses == null) throw new XmlPullParserException
186 if(value != null && value.booleanValue()) {
213 if (serializerClasses == null) {
244 * @return a new instance of a PullParserFactory, as returned by newInstance (null, null);
247 return newInstance(null, null);
254 if (context == null) {
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommListener.java 67 private BluetoothServerSocket mBtServerSocket = null;
69 private ServerSocket mTcpServerSocket = null;
77 if (mSocketAcceptThread == null) {
150 if (mBtServerSocket == null) {
154 if (sSocket ==null) {
189 if (mSocketAcceptThread != null) {
195 if (mTcpServerSocket != null) {
198 mTcpServerSocket = null;
206 if (mBtServerSocket != null) {
209 mBtServerSocket = null;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 148 private PowerManager.WakeLock mWakeLock = null;
152 private SocketAcceptThread mAcceptThread = null;
154 private BluetoothPbapAuthenticator mAuth = null;
158 private ServerSession mServerSession = null;
160 private BluetoothServerSocket mServerSocket = null;
162 private BluetoothSocket mConnSocket = null;
164 private BluetoothDevice mRemoteDevice = null;
166 private static String sLocalPhoneNum = null;
168 private static String sLocalPhoneName = null;
170 private static String sRemoteDeviceName = null;
    [all...]
  /packages/apps/Camera/tests/src/com/android/camera/stress/
CameraStressTestRunner.java 51 if ( video_iterations != null ) {
54 if ( image_iterations != null) {
57 if ( video_duration != null) {
  /packages/apps/Camera2/src/com/android/camera/
CameraButtonIntentReceiver.java 41 if (holder.tryOpen(null, cameraId, null) == null) {

Completed in 1074 milliseconds

<<101102103104105106107108109110>>