/packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/ |
BaseTunerTvInputService.java | 82 public Session onCreateSession(String inputId) { 84 final TunerSession session = new TunerSession( local 86 mTunerSessions.add(session); 87 session.setAudioCapabilities(mAudioCapabilities); 88 session.setOverlayViewEnabled(true); 89 return session; 95 for (TunerSession session : mTunerSessions) { 96 if (!session.isReleased()) { 97 session.setAudioCapabilities(audioCapabilities);
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
toy.cpp | 714 : Session(S), 716 Session.getLLVMContext())), 717 Builder(Session.getLLVMContext()) { 718 M->setDataLayout(Session.getTarget().createDataLayout()); 721 SessionContext& getSession() { return Session; } 725 LLVMContext& getLLVMContext() { return Session.getLLVMContext(); } 730 SessionContext &Session; 738 if (PrototypeAST *ProtoAST = Session.getPrototypeAST(Name)) [all...] |
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
_AbstractFakeCommandHandlerTest.groovy | 23 import org.mockftpserver.core.session.Session 24 import org.mockftpserver.core.session.SessionKeys 25 import org.mockftpserver.core.session.StubSession 53 private session 65 commandHandler.handleCommand(command, session) 73 shouldFail { commandHandler.handleCommand(null, session) } 84 commandHandler.sendReply(session, REPLY_CODE) 85 assert session.sentReplies[0] == [REPLY_CODE, MSG], session.sentReplies[0 [all...] |
/packages/apps/Camera2/src/com/android/camera/one/v2/commands/ |
ZslPreviewCommand.java | 76 try (FrameServer.Session session = mFrameServer.createExclusiveSession()) { 85 session.submitRequest(previewWarming, RequestType.NON_REPEATING); 91 session.submitRequest(zslWarmingBurst, RequestType.NON_REPEATING); 100 session.submitRequest(zslAndPreviewRepeating, RequestType.REPEATING);
|
/packages/apps/Camera2/src/com/android/camera/one/v2/photo/ |
SimpleImageCaptureCommand.java | 63 try (FrameServer.Session session = mFrameServer.createExclusiveSession(); 73 session.submitRequest(Arrays.asList(photoRequest.build()), 76 // Release the FrameServer session (allowing subsequent camera 79 session.close();
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
toy.cpp | 714 : Session(S), 716 Session.getLLVMContext())), 717 Builder(Session.getLLVMContext()) { 718 M->setDataLayout(Session.getTarget().createDataLayout()); 721 SessionContext& getSession() { return Session; } 725 LLVMContext& getLLVMContext() { return Session.getLLVMContext(); } 730 SessionContext &Session; 738 if (PrototypeAST *ProtoAST = Session.getPrototypeAST(Name)) [all...] |
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
toy.cpp | 714 : Session(S), 716 Session.getLLVMContext())), 717 Builder(Session.getLLVMContext()) { 718 M->setDataLayout(Session.getTarget().createDataLayout()); 721 SessionContext& getSession() { return Session; } 725 LLVMContext& getLLVMContext() { return Session.getLLVMContext(); } 730 SessionContext &Session; 738 if (PrototypeAST *ProtoAST = Session.getPrototypeAST(Name)) [all...] |
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
extras_appengine_sessions_ndb_test.py | 24 self.register_model('Session', sessions_ndb.Session) 34 session = store.get_session(backend='datastore') 40 session['a'] = 'b' 41 session['c'] = 'd' 42 session['e'] = 'f' 53 session = store.get_session(backend='datastore') 54 self.assertEqual(session['a'], 'b') 55 self.assertEqual(session['c'], 'd') 56 self.assertEqual(session['e'], 'f' [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
PremiumSmsAccess.java | 39 import com.android.settingslib.applications.ApplicationsState.Session; 47 private Session mSession;
|
/external/llvm/unittests/DebugInfo/PDB/ |
PDBApiTest.cpp | 298 Session.reset(new MockSession()); 351 std::unique_ptr<IPDBSession> Session; 355 auto Symbol = PDBSymbol::create(*Session, std::move(RawSymbol));
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/ |
StubFtpServer.java | 34 import org.mockftpserver.core.session.DefaultSession;
35 import org.mockftpserver.core.session.Session;
140 // Simple value object that holds the socket and thread for a single session
155 // Map of Session -> SessionInfo
249 DefaultSession session = new DefaultSession(clientSocket, commandHandlers);
local 250 Thread sessionThread = new Thread(session);
256 sessions.put(session, sessionInfo);
276 Session session = (Session) iter.next(); local [all...] |
/cts/tests/tests/tv/src/android/media/tv/cts/ |
HardwareSessionTest.java | 94 CountingSession session = HardwareProxyTvInputService.sSession; local 95 return session != null && session.mTuneCount > 0 96 && (session.mHardwareVideoAvailableCount > 0 97 || session.mHardwareVideoUnavailableCount > 0); 115 public Session onCreateSession(String inputId) {
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/ |
document.py | 191 session = requests.Session() 197 session.mount('http://', adapter) 198 session.mount('https://', adapter) 199 r = session.post(url, data=sdf, headers={'Content-Type': 'application/json'})
|
/external/llvm/lib/DebugInfo/PDB/ |
PDBSymbol.cpp | 56 : Session(PDBSession), RawSymbol(std::move(Symbol)) {}
|
/external/llvm/tools/llvm-pdbdump/ |
llvm-pdbdump.cpp | 397 std::unique_ptr<IPDBSession> Session; 398 PDB_ErrorCode Error = loadDataForPDB(PDB_ReaderType::DIA, Path, Session); 419 Session->setLoadAddress(opts::LoadAddress); 423 auto GlobalScope(Session->getGlobalScope());
|
/frameworks/base/core/java/android/content/pm/ |
PackageInstaller.java | 58 * {@link PackageInstaller.Session}, which any app can create. Once the session 60 * decides to either commit or destroy the session. Committing may require user 81 * Activity Action: Show details about a particular install session. This 85 * session. Clients should use {@link SessionInfo#createDetailsIntent()} to 91 * The session to show details for is defined in {@link #EXTRA_SESSION_ID}. 101 * An integer session ID that an operation is working with. 206 * user actively declined requested permissions, or the session was 278 * Create a new session using the given parameters, returning a unique ID 279 * that represents the session. Once created, the session can be opene [all...] |
/packages/apps/Camera2/src/com/android/camera/one/v2/autofocus/ |
FullAFScanCommand.java | 64 FrameServer.Session session = mFrameServer.tryCreateExclusiveSession(); local 65 if (session == null) { 76 session.submitRequest(Arrays.asList(idleBuilder.build()), 88 session.submitRequest(Arrays.asList(cancelBuilder.build()), 93 session.submitRequest(Arrays.asList(idleBuilder.build()), 98 session.submitRequest(Arrays.asList(triggerBuilder.build()), 107 session.close();
|
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
TagDispatchCaptureSession.java | 44 public class TagDispatchCaptureSession implements FrameServer.Session { 57 public void onCaptureStarted(CameraCaptureSessionProxy session, CaptureRequest request, 64 public void onCaptureProgressed(CameraCaptureSessionProxy session, CaptureRequest request, 71 public void onCaptureCompleted(CameraCaptureSessionProxy session, CaptureRequest request, 78 public void onCaptureFailed(CameraCaptureSessionProxy session, CaptureRequest request, 85 public void onCaptureSequenceAborted(CameraCaptureSessionProxy session, int sequenceId) { 92 public void onCaptureSequenceCompleted(CameraCaptureSessionProxy session, int sequenceId,
|
/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/ |
AppDeletionType.java | 45 private ApplicationsState.Session mSession;
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
InCallTonePlayer.java | 108 private Session mSession;
|
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageManagerShellCommand.java | 220 pw.println("Success: created install session [" + sessionId + "]"); 1161 PackageInstaller.Session session = null; local 1206 PackageInstaller.Session session = null; local 1226 PackageInstaller.Session session = null; local 1253 PackageInstaller.Session session = null; local [all...] |
/hardware/qcom/display/msm8084/liboverlay/ |
overlay.h | 103 /* pipe reservation session is running */ 105 /* pipe reservation session has ended*/ 107 /* start session for the pipe reservation */ 209 /* Session for reserved pipes */ 210 enum Session { 215 Session mSession;
|
/hardware/qcom/display/msm8226/liboverlay/ |
overlay.h | 104 /* pipe reservation session is running */ 106 /* pipe reservation session has ended*/ 108 /* start session for the pipe reservation */ 217 /* Session for reserved pipes */ 218 enum Session { 223 Session mSession;
|
/hardware/qcom/display/msm8909/liboverlay/ |
overlay.h | 104 /* pipe reservation session is running */ 106 /* pipe reservation session has ended*/ 108 /* start session for the pipe reservation */ 223 /* Session for reserved pipes */ 224 enum Session { 229 Session mSession;
|
/hardware/qcom/display/msm8994/liboverlay/ |
overlay.h | 107 /* pipe reservation session is running */ 109 /* pipe reservation session has ended*/ 111 /* start session for the pipe reservation */ 234 /* Session for reserved pipes */ 235 enum Session { 240 Session mSession;
|