HomeSort by relevance Sort by last modified time
    Searched refs:Connector (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/libchrome/mojo/public/cpp/bindings/tests/
bindings_test_base.cc 7 #include "mojo/public/cpp/bindings/connector.h"
22 Connector::OverrideDefaultSerializationBehaviorForTesting(
23 Connector::OutgoingSerializationMode::kEager,
24 Connector::IncomingSerializationMode::kDispatchAsIs);
27 Connector::OverrideDefaultSerializationBehaviorForTesting(
28 Connector::OutgoingSerializationMode::kLazy,
29 Connector::IncomingSerializationMode ::
33 Connector::OverrideDefaultSerializationBehaviorForTesting(
34 Connector::OutgoingSerializationMode::kLazy,
35 Connector::IncomingSerializationMode::kDispatchAsIs)
    [all...]
connector_unittest.cc 5 #include "mojo/public/cpp/bindings/connector.h"
55 ConnectorDeletingMessageAccumulator(Connector** connector)
56 : connector_(connector) {}
65 Connector** connector_;
70 ReentrantMessageAccumulator(Connector* connector)
71 : connector_(connector), number_of_calls_(0) {}
86 Connector* connector_;
116 Connector connector0(std::move(handle0_), Connector::SINGLE_THREADED_SEND
    [all...]
  /external/libkmsxx/kms++/inc/kms++/
pipeline.h 9 Connector* connector; member in struct:kms::Pipeline
decls.h 8 class Connector;
connector.h 13 class Connector : public DrmPropObject
39 Connector(Card& card, uint32_t id, uint32_t idx);
40 ~Connector();
card.h 27 Connector* get_first_connected_connector() const;
30 Connector* get_connector(uint32_t id) const;
40 const std::vector<Connector*> get_connectors() const { return m_connectors; }
59 std::vector<Connector*> m_connectors;
crtc.h 15 friend class Connector;
21 int set_mode(Connector* conn, const Videomode& mode);
22 int set_mode(Connector* conn, Framebuffer& fb, const Videomode& mode);
48 void restore_mode(Connector *conn);
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/
ListeningConnector.java 33 * A connector which listens for a connection initiated by a target VM.
39 public interface ListeningConnector extends Connector {
41 * Indicates whether this listening connector supports multiple
53 * The connector uses the given argument map
57 * to identify this connector. The format of the address string
58 * is connector, transport, and, possibly, platform dependent.
61 * of {@link Connector.Argument}. The default argument map for a
62 * connector can be obtained through {@link Connector#defaultArguments}.
76 * @return the address at which the connector is listenin
    [all...]
AttachingConnector.java 33 * A connector which attaches to a previously running target VM.
39 public interface AttachingConnector extends Connector {
44 * The connector uses the given argument map in
48 * of {@link Connector.Argument}. The default argument map for a
49 * connector can be obtained through {@link Connector#defaultArguments}.
56 * @throws TransportTimeoutException when the Connector encapsulates
58 * {@link Connector.Argument} representing a timeout has been set
63 * Specific exceptions are dependent on the Connector implementation
66 * connector arguments is invalid
    [all...]
LaunchingConnector.java 33 * A connector which can launch a target VM before connecting to it.
39 public interface LaunchingConnector extends Connector {
46 * of {@link Connector.Argument}. The default argument map for a
47 * connector can be obtained through {@link Connector#defaultArguments}.
50 * <p>A target VM launched by a launching connector is not
65 * Specific exceptions are dependent on the Connector implementation
68 * connector arguments is invalid.
72 VirtualMachine launch(Map<String,? extends Connector.Argument> arguments)
Connector.java 34 * A connector encapsulates exactly one {@link Transport}. used
35 * to establish the connection. Each connector has a set of arguments
43 * @see Connector.Argument
49 public interface Connector {
51 * Returns a short identifier for the connector. Connector implementors
53 * to avoid name collisions. For example, the Sun connector
57 * @return the name of this connector.
62 * Returns a human-readable description of this connector
65 * @return the description of this connector
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/lib/
connector.cc 5 #include "mojo/public/cpp/bindings/connector.h"
34 // Connector::RunLoopNestingObserver; we use the base type here because that
35 // subclass is private to Connector.
40 Connector::OutgoingSerializationMode g_default_outgoing_serialization_mode =
41 Connector::OutgoingSerializationMode::kLazy;
44 Connector::IncomingSerializationMode g_default_incoming_serialization_mode =
45 Connector::IncomingSerializationMode::kDispatchAsIs;
51 class Connector::ActiveDispatchTracker {
53 explicit ActiveDispatchTracker(const base::WeakPtr<Connector>& connector);
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
VirtualMachineManagerService.java 38 * Replaces the default connector.
42 * connector is not a member of the list returned by
45 * @param connector the new default connector
47 void setDefaultConnector(LaunchingConnector connector);
50 * Adds a connector to the list of known connectors.
52 * @param connector the connector to be added
54 void addConnector(Connector connector);
    [all...]
VirtualMachineManagerImpl.java 44 private List<Connector> connectors = new ArrayList<Connector>();
86 ServiceLoader<Connector> connectorLoader =
87 ServiceLoader.load(Connector.class, Connector.class.getClassLoader());
89 Iterator<Connector> connectors = connectorLoader.iterator();
92 Connector connector; local
95 connector = connectors.next();
106 addConnector(connector);
    [all...]
GenericListeningConnector.java 48 Map<Map<String,? extends Connector.Argument>, TransportService.ListenKey> listenMap;
53 * Initialize a new instance of this connector. The connector
54 * encapsulates a transport service, has a "timeout" connector argument,
55 * and optionally an "address" connector argument.
84 listenMap = new HashMap<Map<String,? extends Connector.Argument>,TransportService.ListenKey>(10);
88 * Initialize a new instance of this connector. This constructor is used
89 * when sub-classing - the resulting connector will a "timeout" connector
97 * Create an instance of this Connector. The resulting ListeningConnector wil
    [all...]
ConnectorImpl.java 41 abstract class ConnectorImpl implements Connector {
147 abstract class ArgumentImpl implements Connector.Argument, Cloneable, Serializable {
194 if ((obj != null) && (obj instanceof Connector.Argument)) {
195 Connector.Argument other = (Connector.Argument)obj;
224 implements Connector.BooleanArgument {
279 implements Connector.IntegerArgument {
380 implements Connector.StringArgument {
398 implements Connector.SelectedArgument {
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Main.java 19 import org.mortbay.jetty.Connector;
30 Connector connector = new SelectChannelConnector(); local
31 connector.setPort(8080);
32 server.setConnectors(new Connector[] {connector});
  /external/libkmsxx/kms++/src/
connector.cpp 64 Connector::Connector(Card &card, uint32_t id, uint32_t idx)
80 Connector::~Connector()
86 void Connector::refresh()
101 void Connector::setup()
114 void Connector::restore_mode()
120 Videomode Connector::get_default_mode() const
129 Videomode Connector::get_mode(const string& mode) const
153 Videomode Connector::get_mode(unsigned xres, unsigned yres, float vrefresh, bool ilace) cons
    [all...]
  /external/libkmsxx/kms++util/src/
resourcemanager.cpp 20 static Connector* find_connector(Card& card, const set<Connector*> reserved)
22 for (Connector* conn : card.get_connectors()) {
35 static Connector* resolve_connector(Card& card, const string& name, const set<Connector*> reserved)
43 Connector* c = card.get_connector(id);
57 Connector* c = connectors[idx];
66 for (Connector* conn : connectors) {
79 Connector* ResourceManager::reserve_connector(const string& name)
81 Connector* conn
    [all...]
  /external/libkmsxx/kms++util/inc/kms++util/
resourcemanager.h 15 Connector* reserve_connector(const std::string& name = "");
16 Connector* reserve_connector(Connector* conn);
17 Crtc* reserve_crtc(Connector* conn);
27 std::set<Connector*> m_reserved_connectors;
  /external/libchrome/mojo/public/cpp/bindings/
connector.h 32 // The Connector class is responsible for performing read/write operations on a
42 class MOJO_CPP_BINDINGS_EXPORT Connector : public MessageReceiver {
45 // Connector::Accept() is only called from a single sequence.
47 // Connector::Accept() is allowed to be called from multiple sequences.
51 // Determines how this Connector should behave with respect to serialization
54 // Lazy serialization. The Connector prefers to transmit serialized messages
60 // Eager serialization. The Connector always prefers serialized messages,
62 // sending on the Connector.
66 // Determines how this Connector should behave with respect to serialization
80 // The Connector takes ownership of |message_pipe|
    [all...]
  /external/libkmsxx/py/pykms/
pykmsbase.cpp 65 py::class_<Connector, DrmPropObject, unique_ptr<Connector, py::nodelete>>(m, "Connector")
66 .def_property_readonly("fullname", &Connector::fullname)
67 .def("get_default_mode", &Connector::get_default_mode)
68 .def("get_current_crtc", &Connector::get_current_crtc)
69 .def("get_possible_crtcs", [](Connector* self) {
72 .def("get_modes", &Connector::get_modes)
73 .def("get_mode", (Videomode (Connector::*)(const string& mode) const)&Connector::get_mode
    [all...]
  /external/libchrome/mojo/public/js/lib/
connector.js 8 function Connector(handle) {
10 throw new Error("Connector: not a handle " + handle);
22 Connector.prototype.close = function() {
30 Connector.prototype.pauseIncomingMethodCallProcessing = function() {
38 Connector.prototype.resumeIncomingMethodCallProcessing = function() {
46 Connector.prototype.accept = function(message) {
77 Connector.prototype.setIncomingReceiver = function(receiver) {
81 Connector.prototype.setErrorHandler = function(handler) {
85 Connector.prototype.readMore_ = function(result) {
92 if (this.handle_ == null) // The connector has been closed
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/
VirtualMachineManager.java 44 * {@link com.sun.jdi.connect.Connector} objects. Each connector encapsulates
51 * Some {@link com.sun.jdi.connect.Connector} implementations may require slightly
64 * method of the default connector, obtained with {@link #defaultConnector}. The
70 * Debugger selects a connector from the list returned by
76 * method of the selected connector. The
94 * Debugger is launched. Debugger selects a connector in the list
98 * Debugger presents the default connector parameters (obtained through
99 * {@link com.sun.jdi.connect.Connector#defaultArguments()}) to the end user,
119 * connector. For each call, a transport-specific address string i
    [all...]
  /external/libkmsxx/utils/
kmsblank.cpp 16 " -c, --connector=CONN CONN is <connector>\n"
19 "<connector> can be given by index (<idx>) or id (@<id>).\n"
20 "<connector> can also be given by name.\n"
40 Option("c|connector=", [&conn_strs](string str)
65 vector<Connector*> conns;
71 EXIT("Failed to resolve connector '%s'", s.c_str());
81 for (Connector* conn : conns) {
83 printf("Connector %u not connected\n", conn->idx());
87 printf("Connector %u: %sblank\n", conn->idx(), blank ? "" : "un")
    [all...]

Completed in 1445 milliseconds

1 2 3