Home
last modified time | relevance | path

Searched refs:Session (Results 1 – 25 of 2229) sorted by relevance

12345678910>>...90

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeExeSymbol.cpp23 static DbiStream *getDbiStreamPtr(NativeSession &Session) { in getDbiStreamPtr() argument
24 Expected<DbiStream &> DbiS = Session.getPDBFile().getPDBDbiStream(); in getDbiStreamPtr()
32 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId) in NativeExeSymbol() argument
33 : NativeRawSymbol(Session, PDB_SymType::Exe, SymbolId), in NativeExeSymbol()
34 Dbi(getDbiStreamPtr(Session)) {} in NativeExeSymbol()
40 return std::unique_ptr<IPDBEnumSymbols>(new NativeEnumModules(Session)); in findChildren()
44 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ARRAY); in findChildren()
46 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ENUM); in findChildren()
48 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_POINTER); in findChildren()
50 return Session.getSymbolCache().createTypeEnumerator( in findChildren()
[all …]
DNativeTypeFunctionSig.cpp28 NativeTypeFunctionArg(NativeSession &Session, in NativeTypeFunctionArg() argument
30 : NativeRawSymbol(Session, PDB_SymType::FunctionArg, 0), in NativeTypeFunctionArg()
37 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
48 NativeEnumFunctionArgs(NativeSession &Session, in NativeEnumFunctionArgs() argument
50 : Session(Session), TypeEnumerator(std::move(TypeEnumerator)) {} in NativeEnumFunctionArgs()
68 auto NTFA = std::make_unique<NativeTypeFunctionArg>(Session, std::move(S)); in wrap()
69 return PDBSymbol::create(Session, std::move(NTFA)); in wrap()
71 NativeSession &Session; member in __anon1dcc878a0111::NativeEnumFunctionArgs
76 NativeTypeFunctionSig::NativeTypeFunctionSig(NativeSession &Session, in NativeTypeFunctionSig() argument
80 : NativeRawSymbol(Session, PDB_SymType::FunctionSig, Id), in NativeTypeFunctionSig()
[all …]
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeExeSymbol.cpp23 static DbiStream *getDbiStreamPtr(NativeSession &Session) { in getDbiStreamPtr() argument
24 Expected<DbiStream &> DbiS = Session.getPDBFile().getPDBDbiStream(); in getDbiStreamPtr()
32 NativeExeSymbol::NativeExeSymbol(NativeSession &Session, SymIndexId SymbolId) in NativeExeSymbol() argument
33 : NativeRawSymbol(Session, PDB_SymType::Exe, SymbolId), in NativeExeSymbol()
34 Dbi(getDbiStreamPtr(Session)) {} in NativeExeSymbol()
40 return std::unique_ptr<IPDBEnumSymbols>(new NativeEnumModules(Session)); in findChildren()
44 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ARRAY); in findChildren()
46 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_ENUM); in findChildren()
48 return Session.getSymbolCache().createTypeEnumerator(codeview::LF_POINTER); in findChildren()
50 return Session.getSymbolCache().createTypeEnumerator( in findChildren()
[all …]
DNativeTypeFunctionSig.cpp28 NativeTypeFunctionArg(NativeSession &Session, in NativeTypeFunctionArg() argument
30 : NativeRawSymbol(Session, PDB_SymType::FunctionArg, 0), in NativeTypeFunctionArg()
37 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
48 NativeEnumFunctionArgs(NativeSession &Session, in NativeEnumFunctionArgs() argument
50 : Session(Session), TypeEnumerator(std::move(TypeEnumerator)) {} in NativeEnumFunctionArgs()
68 auto NTFA = std::make_unique<NativeTypeFunctionArg>(Session, std::move(S)); in wrap()
69 return PDBSymbol::create(Session, std::move(NTFA)); in wrap()
71 NativeSession &Session; member in __anon2733a3160111::NativeEnumFunctionArgs
76 NativeTypeFunctionSig::NativeTypeFunctionSig(NativeSession &Session, in NativeTypeFunctionSig() argument
80 : NativeRawSymbol(Session, PDB_SymType::FunctionSig, Id), in NativeTypeFunctionSig()
[all …]
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy22 * Stub implementation of the {@link Session} interface for testing
28 class StubSession implements Session {
36 * @see org.mockftpserver.core.session.Session#close()
43 * @see org.mockftpserver.core.session.Session#closeDataConnection()
50 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
57 * @see org.mockftpserver.core.session.Session#getAttributeNames()
64 * @see org.mockftpserver.core.session.Session#getClientHost()
71 * @see org.mockftpserver.core.session.Session#getServerHost()
78 * @see org.mockftpserver.core.session.Session#openDataConnection()
85 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp85 DIASession::DIASession(CComPtr<IDiaSession> DiaSession) : Session(DiaSession) {} in DIASession()
88 std::unique_ptr<IPDBSession> &Session) { in createFromPdb() argument
109 Session.reset(new DIASession(DiaSession)); in createFromPdb()
114 std::unique_ptr<IPDBSession> &Session) { in createFromExe() argument
134 Session.reset(new DIASession(DiaSession)); in createFromExe()
140 bool success = (S_OK == Session->get_loadAddress(&LoadAddress)); in getLoadAddress()
145 return (S_OK == Session->put_loadAddress(Address)); in setLoadAddress()
150 if (S_OK != Session->get_globalScope(&GlobalScope)) in getGlobalScope()
163 if (S_OK == Session->addressForVA(VA, &ArgSection, &ArgOffset)) { in addressForVA()
174 if (S_OK == Session->addressForRVA(RVA, &ArgSection, &ArgOffset)) { in addressForRVA()
[all …]
/external/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp85 DIASession::DIASession(CComPtr<IDiaSession> DiaSession) : Session(DiaSession) {} in DIASession()
88 std::unique_ptr<IPDBSession> &Session) { in createFromPdb() argument
109 Session.reset(new DIASession(DiaSession)); in createFromPdb()
114 std::unique_ptr<IPDBSession> &Session) { in createFromExe() argument
134 Session.reset(new DIASession(DiaSession)); in createFromExe()
140 bool success = (S_OK == Session->get_loadAddress(&LoadAddress)); in getLoadAddress()
145 return (S_OK == Session->put_loadAddress(Address)); in setLoadAddress()
150 if (S_OK != Session->get_globalScope(&GlobalScope)) in getGlobalScope()
163 if (S_OK == Session->addressForVA(VA, &ArgSection, &ArgOffset)) { in addressForVA()
174 if (S_OK == Session->addressForRVA(RVA, &ArgSection, &ArgOffset)) { in addressForRVA()
[all …]
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/core/
DConstantTest.java34 import org.tensorflow.Session;
47 Session sess = new Session(g)) { in createInt()
62 Session sess = new Session(g)) { in createIntBuffer()
77 Session sess = new Session(g)) { in createFloat()
92 Session sess = new Session(g)) { in createFloatBuffer()
107 Session sess = new Session(g)) { in createDouble()
122 Session sess = new Session(g)) { in createDoubleBuffer()
137 Session sess = new Session(g)) { in createLong()
152 Session sess = new Session(g)) { in createLongBuffer()
167 Session sess = new Session(g)) { in createBoolean()
[all …]
DZerosTest.java28 import org.tensorflow.Session;
40 Session sess = new Session(g)) { in createIntZeros()
58 Session sess = new Session(g)) { in createFloatZeros()
76 Session sess = new Session(g)) { in createDoubleZeros()
94 Session sess = new Session(g)) { in createLongZeros()
112 Session sess = new Session(g)) { in createBooleanZeros()
130 Session sess = new Session(g)) { in createUInt8Zeros()
149 Session sess = new Session(g)) { in cannotCreateStringZeros()
160 Session sess = new Session(g)) { in operationsComposingZerosAreCorrectlyNamed()
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
DSessionTest.java34 Session s = new Session(g)) { in runUsingOperationNames()
49 Session s = new Session(g)) { in runUsingOperationHandles()
66 Session s = new Session(g)) { in runUsingColonSeparatedNames()
103 Session s = new Session(g)) { in runWithMetadata()
106 Session.Run result = in runWithMetadata()
133 Session s = new Session(g)) { in runMultipleOutputs()
148 Session s = new Session(g); in failOnUseAfterClose()
162 Session s = new Session(g, singleThreadConfigProto())) {} in createWithConfigProto()
/external/tensorflow/tensorflow/core/common_runtime/
Dsession.cc33 Session::Session() {} in Session() function in tensorflow::Session
35 Session::~Session() {} in ~Session()
37 Status Session::Run(const RunOptions& run_options, in Run()
46 Status Session::PRunSetup(const std::vector<string>& input_names, in PRunSetup()
54 Status Session::PRun(const string& handle, in PRun()
62 Session* NewSession(const SessionOptions& options) { in NewSession()
67 Session* out_session; in NewSession()
76 Status NewSession(const SessionOptions& options, Session** out_session) { in NewSession()
/external/openssh/
Dsession.h30 typedef struct Session Session; typedef
31 struct Session { struct
74 void session_destroy_all(struct ssh *, void (*)(Session *)); argument
75 void session_pty_cleanup2(Session *);
77 Session *session_new(void);
78 Session *session_by_tty(char *);
79 void session_close(struct ssh *, Session *);
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp78 DIASession::DIASession(CComPtr<IDiaSession> DiaSession) : Session(DiaSession) {} in DIASession()
81 std::unique_ptr<IPDBSession> &Session) { in createFromPdb() argument
101 Session.reset(new DIASession(DiaSession)); in createFromPdb()
106 std::unique_ptr<IPDBSession> &Session) { in createFromExe() argument
126 Session.reset(new DIASession(DiaSession)); in createFromExe()
132 bool success = (S_OK == Session->get_loadAddress(&LoadAddress)); in getLoadAddress()
137 Session->put_loadAddress(Address); in setLoadAddress()
142 if (S_OK != Session->get_globalScope(&GlobalScope)) in getGlobalScope()
154 if (S_OK != Session->symbolById(SymbolId, &LocatedSymbol)) in getSymbolById()
166 if (S_OK != Session->findSymbolByVA(Address, EnumVal, &Symbol)) { in findSymbolByAddress()
[all …]
/external/llvm/lib/DebugInfo/PDB/
DPDBSymbolTypeFunctionSig.cpp31 : Session(PDBSession), in FunctionArgEnumerator()
36 : Session(PDBSession), Enumerator(std::move(ArgEnumerator)) {} in FunctionArgEnumerator()
46 return Session.getSymbolById(FunctionArgSymbol->getTypeId()); in getChildAtIndex()
53 return Session.getSymbolById(FunctionArgSymbol->getTypeId()); in getNext()
60 return new FunctionArgEnumerator(Session, std::move(Clone)); in clone()
64 const IPDBSession &Session; member in __anon81e3f8570111::FunctionArgEnumerator
74 return Session.getSymbolById(getTypeId()); in getReturnType()
79 return llvm::make_unique<FunctionArgEnumerator>(Session, *this); in getArguments()
86 return Session.getSymbolById(ClassId); in getClassParent()
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/core/session/
DStubSession.groovy19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames()
69 * @see org.mockftpserver.core.session.Session#getClientHost()
76 * @see org.mockftpserver.core.session.Session#getServerHost()
83 * @see org.mockftpserver.core.session.Session#openDataConnection()
90 * @see org.mockftpserver.core.session.Session#readData()
[all …]

12345678910>>...90