/external/tensorflow/tensorflow/tools/graph_transforms/ |
fuse_convolutions_test.cc | 25 #include "tensorflow/core/public/session.h" 78 std::unique_ptr<Session> original_session(NewSession(SessionOptions())); 87 std::unique_ptr<Session> fused_session(NewSession(SessionOptions())); 128 std::unique_ptr<Session> original_session(NewSession(SessionOptions())); 137 std::unique_ptr<Session> fused_session(NewSession(SessionOptions())); 180 std::unique_ptr<Session> original_session(NewSession(SessionOptions())); 189 std::unique_ptr<Session> fused_session(NewSession(SessionOptions()));
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
model_fn_test.py | 25 from tensorflow.python.client import session 99 with session.Session(): 119 with session.Session(): 136 with session.Session(): 158 with session.Session(): 181 with session.Session() [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
winevt.h | 326 EVT_HANDLE Session, 337 EVT_HANDLE Session, 358 EVT_HANDLE Session, 478 EVT_HANDLE Session, 484 EVT_HANDLE Session, 494 EVT_HANDLE Session, 500 EVT_HANDLE Session, 505 EVT_HANDLE Session, 520 EVT_HANDLE Session, 557 EVT_HANDLE Session, [all...] |
/frameworks/base/media/java/android/media/tv/ |
TvView.java | 32 import android.media.tv.TvInputManager.Session; 33 import android.media.tv.TvInputManager.Session.FinishedInputEventCallback; 84 private Session mSession; 322 // createSession() was called but the actual session for the given inputId has not 332 // any session is created (e.g. when quickly tuning to a channel from input A and then 379 * @see TvInputService.Session#notifyContentBlocked(TvContentRating) 392 * @see TvInputService.Session#notifyContentBlocked(TvContentRating) 572 Log.w(TAG, "sendAppPrivateCommand - session not yet created (action \"" + action 630 return ret != Session.DISPATCH_NOT_HANDLED; 645 return ret != Session.DISPATCH_NOT_HANDLED [all...] |
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
CallerInfoLookupHelperTest.java | 26 import android.telecom.Logging.Session; 128 ArgumentCaptor<Session> logSessionCaptor = ArgumentCaptor.forClass(Session.class); 167 ArgumentCaptor<Session> logSessionCaptor = ArgumentCaptor.forClass(Session.class); 207 ArgumentCaptor<Session> logSessionCaptor = ArgumentCaptor.forClass(Session.class);
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeUdpIoLib/ |
DxeUdpIoLib.c | 171 VOID *Session;
242 Session = &((EFI_UDP4_RECEIVE_DATA *) RxData)->UdpSession;
243 EndPoint.LocalPort = ((EFI_UDP4_SESSION_DATA *) Session)->DestinationPort;
244 EndPoint.RemotePort = ((EFI_UDP4_SESSION_DATA *) Session)->SourcePort;
248 &((EFI_UDP4_SESSION_DATA *) Session)->DestinationAddress,
254 &((EFI_UDP4_SESSION_DATA *) Session)->SourceAddress,
285 Session = &((EFI_UDP6_RECEIVE_DATA *) RxData)->UdpSession;
286 EndPoint.LocalPort = ((EFI_UDP6_SESSION_DATA *) Session)->DestinationPort;
287 EndPoint.RemotePort = ((EFI_UDP6_SESSION_DATA *) Session)->SourcePort;
291 &((EFI_UDP6_SESSION_DATA *) Session)->DestinationAddress, [all...] |
/external/tensorflow/tensorflow/go/ |
session.go | 31 // Session drives a TensorFlow graph computation. 33 // When a Session is created with a given target, a new Session object is bound 35 // available to this session to perform computation described in the GraphDef. 36 // After creating the session with a graph, the caller uses the Run() API to 38 // A Session allows concurrent calls to Run(). 39 type Session struct { 49 // NewSession creates a new execution session with the associated graph. 51 func NewSession(graph *Graph, options *SessionOptions) (*Session, error) { 63 s := &Session{c: cSess [all...] |
/packages/services/Telecomm/src/com/android/server/telecom/ |
ConnectionServiceWrapper.java | 36 import android.telecom.Logging.Session; 74 ParcelableConnection connection, Session.Info sessionInfo) { 102 public void setActive(String callId, Session.Info sessionInfo) { 125 public void setRinging(String callId, Session.Info sessionInfo) { 149 Session.Info sessionInfo) { 170 public void setDialing(String callId, Session.Info sessionInfo) { 193 public void setPulling(String callId, Session.Info sessionInfo) { 215 Session.Info sessionInfo) { 239 public void setOnHold(String callId, Session.Info sessionInfo) { 263 Session.Info sessionInfo) [all...] |
CallerInfoLookupHelper.java | 28 import android.telecom.Logging.Session; 123 Session continuedSession = Log.createSubsession(); 144 Log.continueSession((Session) cookie, "CILH.oQC"); 177 Session continuedSession = Log.createSubsession(); 194 Log.continueSession((Session) cookie, "CLIH.oILC");
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/server/ |
AbstractFtpServer.java | 23 import org.mockftpserver.core.session.DefaultSession;
24 import org.mockftpserver.core.session.Session;
83 // Simple value object that holds the socket and thread for a single session
98 // Map of Session -> SessionInfo
156 Session session = createSession(clientSocket);
local 157 Thread sessionThread = new Thread(session);
163 sessions.put(session, sessionInfo);
340 * Create a new Session instance for the specified client Socket 352 Session session = (Session) entry.getKey(); local [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/ |
_AbstractCommandHandlerTest.java | 23 import org.mockftpserver.core.session.Session;
55 private Session session;
field in class:_AbstractCommandHandlerTest 59 * Test the handleCommand(Command,Session) method
63 commandHandler.handleCommand(COMMAND, session);
69 * Test the handleCommand(Command,Session) method, passing in a null Command
73 commandHandler.handleCommand(null, session);
82 * Test the handleCommand(Command,Session) method, passing in a null Session
[all...] |
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/ |
Session.java | 24 * <p>A {@code Session} instance encapsulates the environment in which {@link Operation}s in a 31 * try (Session s = new Session(graph)) { 43 * <p><b>WARNING:</b>A {@code Session} owns resources that <b>must</b> be explicitly freed by 46 * <p>Instances of a Session are thread-safe. 48 public final class Session implements AutoCloseable { 50 /** Construct a new session with the associated {@link Graph}. */ 51 public Session(Graph g) { 56 * Construct a new session with the associated {@link Graph} and configuration options. 58 * @param g The {@link Graph} the created Session will operate on [all...] |
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
iterator_ops_cluster_test.py | 23 from tensorflow.python.client import session 58 with session.Session(worker[0].target) as sess: 82 with session.Session(target) as sess: 136 with session.Session(worker[0].target) as sess: 141 with session.Session(worker[0].target) as sess: 168 with session.Session(worker[0].target) as sess [all...] |
/external/tensorflow/tensorflow/python/kernel_tests/distributions/ |
exponential_test.py | 25 from tensorflow.python.client import session 48 with session.Session(): 68 with session.Session(): 85 with session.Session(): 95 with session.Session(): 105 with session.Session() [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/ |
IkeCommon.c | 24 @param[in] IkeSaSession Pointer to the Child SA Session.
27 @retval TRUE This SpiValue has existed in the Child SA Session
28 @retval FALSE This SpiValue doesn't exist in the Child SA Session.
205 Session.
313 @param[in] Session Pointer of the IKE_SA_SESSION.
318 IN UINT8 *Session
321 if (*(UINT32 *) Session == IKEV2_SA_SESSION_SIGNATURE) {
322 return ((IKEV2_SA_SESSION *) Session)->SessionCommon.IkeVer;
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
RawSession.cpp | 49 std::unique_ptr<IPDBSession> &Session) { 66 Session.reset(new RawSession(std::move(File))); 72 std::unique_ptr<IPDBSession> &Session) {
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/ |
StubFtpServerTest.java | 27 import org.mockftpserver.core.session.Session;
173 protected void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
179 public void handleCommand(Command command, Session session) throws Exception {
|
/external/pdfium/core/fpdfapi/parser/ |
cpdf_object_avail.cpp | 60 const CPDF_ReadValidator::Session parse_session(validator_.Get()); 89 const CPDF_ReadValidator::Session parse_session(validator_.Get()); 112 const CPDF_ReadValidator::Session parse_session(validator_.Get());
|
/external/tensorflow/tensorflow/c/ |
c_api_internal.h | 39 #include "tensorflow/core/public/session.h" 66 tensorflow::Session* session; member in struct:TF_DeprecatedSession 89 // session. Under normal conditions all statuses are Status::OK(), but 90 // if some operation is mutated after it was run by a session (this 91 // is detected in RecordMutation function), that session is no longer 93 // to the user, should she try running this session. 124 TF_Session(tensorflow::Session* s, TF_Graph* g); 126 tensorflow::Session* session; member in struct:TF_Session [all...] |
/external/tensorflow/tensorflow/cc/client/ |
client_session.cc | 25 #include "tensorflow/core/public/session.h" 34 Impl(Session* session, std::shared_ptr<Graph> graph) 35 : session_(session), graph_(std::move(graph)) {} 40 std::unique_ptr<Session> session_; 54 Session* new_session;
|
/external/tensorflow/tensorflow/contrib/mpi_collectives/ |
__init__.py | 42 # Use `mpi.Session` instead of `tf.Session` 43 with mpi.Session() as session: 44 rank = session.run(mpi.rank()) 48 print("MPI Size:", session.run(mpi.size())) 105 with mpi.Session() as session: 106 rank = session.run(mpi.rank()) 109 _, l = session.run([train, avg_loss], feed_dict=feed_dict [all...] |
/external/tensorflow/tensorflow/contrib/rnn/python/tools/ |
checkpoint_convert_test.py | 25 from tensorflow.python.client import session 61 with session.Session() as sess: 76 with session.Session() as sess: 91 with session.Session() as sess:
|
/external/tensorflow/tensorflow/examples/image_retraining/ |
retrain_test.py | 64 with tf.Session() as sess: 72 with tf.Session() as sess: 81 with tf.Session() as sess:
|
/external/tensorflow/tensorflow/python/client/ |
session_list_devices_test.py | 16 """Tests for tensorflow.python.client.session.Session's list_devices API.""" 25 from tensorflow.python.client import session 38 with session.Session() as sess: 63 with session.Session(server.target) as sess: 78 with session.Session(server1.target, config=config) as sess:
|
/packages/apps/Dialer/java/com/android/dialer/enrichedcall/ |
EnrichedCallManager.java | 84 * Starts a call composer session with the given remote number. 87 * @return the id for the started session, or {@link Session#NO_SESSION_ID} if the session fails 93 * Sends the given information through an open enriched call session. As per the enriched calling 97 * @param sessionId the id for the session. See {@link #startCallComposerSession(String)} 99 * @throws IllegalArgumentException if there's no open session with the given number 100 * @throws IllegalStateException if the session isn't in the {@link Session#STATE_STARTED} state 106 * Ends the given call composer session. Ending a session means that the call composer sessio [all...] |