Searched refs:accept (Results 51 - 75 of 108) sorted by relevance

12345

/frameworks/base/services/core/java/com/android/server/am/
H A DNativeCrashListener.java95 * Daemon thread that accept()s incoming domain socket connections from debuggerd
129 peerFd = Os.accept(serverFd, null /* peerAddress */);
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintService.java96 int accept; // number of accepted fingerprints field in class:FingerprintService.PerformanceStats
98 int acquire; // total number of acquisitions. Should be >= accept+reject due to poor image
293 mPerformanceStats.accept++;
1017 set.put("accept", (stats != null) ? stats.accept : 0);
1023 set.put("acceptCrypto", (cryptoStats != null) ? cryptoStats.accept : 0);
/frameworks/base/services/core/java/com/android/server/wm/
H A DViewServer.java169 Socket client = mServer.accept();
/frameworks/base/tools/aapt2/
H A DResourceValues.cpp30 void BaseValue<Derived>::accept(RawValueVisitor* visitor) { function in class:aapt::BaseValue
35 void BaseItem<Derived>::accept(RawValueVisitor* visitor) { function in class:aapt::BaseItem
H A DDebug.cpp168 value->value->accept(&visitor);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDependencyFinder.java218 cr.accept(visitor, 0 /* flags */);
291 * This will change before each {@link ClassReader#accept(ClassVisitor, int)} call.
341 // SignatureReader.accept will call accessType so we don't really have
343 sr.accept(new MySignatureVisitor());
H A DAbstractClassAdapter.java149 reader.accept(new RenameSignatureAdapter(writer));
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java693 public void accept(int callType, ImsStreamMediaProfile profile) { method in class:ImsCallSession
699 miSession.accept(callType, profile);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTrackerTest.java91 // trigger the listener on accept call
97 }).when(mImsCall).accept(anyInt());
247 verify(mImsCall, times(1)).accept(eq(ImsCallProfile
316 //hold the foreground active call, accept the new ringing call
/frameworks/base/core/tests/BTtraffic/src/com/android/google/experimental/bttraffic/
H A DBTtraffic.java192 Log.d(TAG, "got server socket, starting accept loop");
196 socket = serverSocket.accept();
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DProxyServer.java337 Socket socket = serverSocket.accept();
/frameworks/base/tests/Camera2Tests/CameraToo/tests/src/com/example/android/camera2/cameratoo/
H A DCameraTooTest.java137 public boolean accept(File dir, String filename) {
/frameworks/base/tools/aapt2/flatten/
H A DXmlFlattener.cpp259 node->accept(&visitor);
/frameworks/base/tools/aapt2/link/
H A DManifestFixer.cpp254 manifestEl->accept(&visitor);
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessExpressions.java132 public boolean accept(File dir, String name) {
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDexExtractor.java310 public boolean accept(File pathname) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DModelInterpreter.java205 s = mSS.accept();
208 "IOException on socket.accept(); stopping", ex);
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java799 c.accept(mList);
903 sa.accept(si);
917 sa.accept(si);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiDevice.java719 * to allow the device time to wake up and accept input.
805 public boolean accept(AccessibilityEvent t) {
/frameworks/base/core/java/android/print/
H A DPrinterCapabilitiesInfo.java221 enforceSingle.accept(currentMode);
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java93 /* Set the number of connections the server will accept before shutdown */
183 * Call this to specify the maximum number of sockets to accept
184 * @param limit The number of sockets to accept
256 // Log.d(LOGTAG, "TestWebServer run() calling accept()");
257 Socket s = ss.accept();
278 log("SocketException in AcceptThread: probably closed during accept");
293 this does not cause the SocketException from ss.accept
371 * Called by the accept thread when it's closing. Potentially unblocks
381 * been identified by the accept thread upon which it will
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java485 // Call profile to be updated after the application's action (accept/reject)
486 // to the call update. After the application's action (accept/reject) is done,
1086 * @throws ImsException if the IMS service fails to accept the call
1088 public void accept(int callType) throws ImsException { method in class:ImsCall
1089 accept(callType, new ImsStreamMediaProfile());
1098 * @throws ImsException if the IMS service fails to accept the call
1100 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { method in class:ImsCall
1101 logi("accept :: callType=" + callType + ", profile=" + profile);
1110 mSession.accept(callType, profile);
1112 loge("accept
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java417 boolean accept, Message response) {
416 handleCallSetupRequestFromSim( boolean accept, Message response) argument
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java730 final boolean accept = isFileEligibleForRestore(destination);
731 // If we don't accept the file, consume the bytes from the pipe anyway.
732 FullBackup.restoreFile(data, size, type, mode, mtime, accept ? destination : null);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java184 public boolean accept(File file) {
194 public boolean accept(File file) {
571 // User needs to accept permissions; give installer an intent they
1068 throw new SecurityException("Must be sealed to accept permissions");

Completed in 1049 milliseconds

12345