Searched defs:manager (Results 1 - 25 of 578) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dmain.cpp24 virtual void saveState(QSessionManager &manager);
35 void WpaGuiApp::saveState(QSessionManager &manager) argument
37 QApplication::saveState(manager);
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/smack/src/org/jivesoftware/smackx/
H A DServiceDiscoveryManager.java82 * service manager will respond to any service discovery request that the connection may
694 * @param manager
696 public void setEntityCapsManager(EntityCapsManager manager) { argument
697 capsManager = manager;
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
H A DCloseListener.java36 /* manager containing the listeners and the XMPP connection */
37 private final InBandBytestreamManager manager; field in class:CloseListener
46 * @param manager the In-Band Bytestream manager
48 protected CloseListener(InBandBytestreamManager manager) { argument
49 this.manager = manager;
54 InBandBytestreamSession ibbSession = this.manager.getSessions().get(
57 this.manager.replyItemNotFoundPacket(closeRequest);
61 this.manager
[all...]
H A DDataListener.java39 /* manager containing the listeners and the XMPP connection */
40 private final InBandBytestreamManager manager; field in class:DataListener
49 * @param manager the In-Band Bytestream manager
51 public DataListener(InBandBytestreamManager manager) { argument
52 this.manager = manager;
57 InBandBytestreamSession ibbSession = this.manager.getSessions().get(
60 this.manager.replyItemNotFoundPacket(data);
H A DInBandBytestreamRequest.java33 * In-Band Bytestream manager containing the XMPP connection and helper
36 private final InBandBytestreamManager manager; field in class:InBandBytestreamRequest
38 protected InBandBytestreamRequest(InBandBytestreamManager manager, argument
40 this.manager = manager;
70 Connection connection = this.manager.getConnection();
75 this.manager.getSessions().put(this.byteStreamRequest.getSessionID(), ibbSession);
89 this.manager.replyRejectPacket(this.byteStreamRequest);
H A DInitiationListener.java43 /* manager containing the listeners and the XMPP connection */
44 private final InBandBytestreamManager manager; field in class:InitiationListener
56 * @param manager the In-Band Bytestream manager
58 protected InitiationListener(InBandBytestreamManager manager) { argument
59 this.manager = manager;
76 if (ibbRequest.getBlockSize() > this.manager.getMaximumBlockSize()) {
77 this.manager.replyResourceConstraintPacket(ibbRequest);
82 if (this.manager
[all...]
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
H A DInitiationListener.java39 /* manager containing the listeners and the XMPP connection */
40 private final Socks5BytestreamManager manager; field in class:InitiationListener
52 * @param manager the SOCKS5 Bytestream manager
54 protected InitiationListener(Socks5BytestreamManager manager) { argument
55 this.manager = manager;
72 if (this.manager.getIgnoredBytestreamRequests().remove(byteStreamRequest.getSessionID())) {
77 Socks5BytestreamRequest request = new Socks5BytestreamRequest(this.manager,
81 BytestreamListener userListener = this.manager
[all...]
H A DSocks5BytestreamRequest.java56 /* SOCKS5 Bytestream manager containing the XMPP connection and helper methods */
57 private Socks5BytestreamManager manager; field in class:Socks5BytestreamRequest
94 * @param manager the SOCKS5 Bytestream manager
97 protected Socks5BytestreamRequest(Socks5BytestreamManager manager, Bytestream bytestreamRequest) { argument
98 this.manager = manager;
201 this.bytestreamRequest.getFrom(), this.manager.getConnection().getUser());
252 this.manager.getConnection().sendPacket(response);
263 this.manager
[all...]
/external/smack/src/org/jivesoftware/smackx/filetransfer/
H A DFileTransferRequest.java33 private final FileTransferManager manager; field in class:FileTransferRequest
39 * @param manager
40 * The manager handling this file transfer
45 public FileTransferRequest(FileTransferManager manager, StreamInitiation si) { argument
47 this.manager = manager;
128 return manager.createIncomingFileTransfer(this);
135 manager.rejectIncomingFileTransfer(this);
H A DIBBTransferNegotiator.java53 private InBandBytestreamManager manager; field in class:IBBTransferNegotiator
62 this.manager = InBandBytestreamManager.getByteStreamManager(connection);
67 InBandBytestreamSession session = this.manager.establishSession(target, streamID);
78 this.manager.ignoreBytestreamRequestOnce(initiation.getSessionID());
90 this.manager.ignoreBytestreamRequestOnce(streamID);
101 InBandBytestreamRequest request = new ByteStreamRequest(this.manager,
146 private ByteStreamRequest(InBandBytestreamManager manager, Open byteStreamRequest) { argument
147 super(manager, byteStreamRequest);
H A DSocks5TransferNegotiator.java46 private Socks5BytestreamManager manager; field in class:Socks5TransferNegotiator
50 this.manager = Socks5BytestreamManager.getBytestreamManager(this.connection);
57 return this.manager.establishSession(target, streamID).getOutputStream();
74 this.manager.ignoreBytestreamRequestOnce(initiation.getSessionID());
87 this.manager.ignoreBytestreamRequestOnce(streamID);
101 Socks5BytestreamRequest request = new ByteStreamRequest(this.manager,
158 private ByteStreamRequest(Socks5BytestreamManager manager, Bytestream byteStreamRequest) { argument
159 super(manager, byteStreamRequest);
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDialogFragment.java36 public void show(FragmentManager manager, String tag) { argument
37 TestFragmentManager testFragmentManager = (TestFragmentManager) manager;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DFragmentManagerTest.java33 private TestFragmentManager manager; field in class:FragmentManagerTest
42 manager = (TestFragmentManager) activity.getSupportFragmentManager();
49 manager.addFragment(CONTAINER_VIEW_ID, "tag1", fragment, false);
51 assertThat(manager.findFragmentById(CONTAINER_VIEW_ID), sameInstance((Fragment) fragment));
56 manager.addFragment(CONTAINER_VIEW_ID, "tag1", fragment, false);
58 assertThat(manager.findFragmentByTag("tag1"), sameInstance((Fragment) fragment));
63 manager.addFragment(View.NO_ID, null, fragment, false);
76 manager.addFragment(View.NO_ID, null, fragment, false);
78 manager.startFragment(fragment);
93 manager
[all...]
H A DFragmentTransactionTest.java34 private MockTestFragmentManager manager; field in class:FragmentTransactionTest
42 manager = new MockTestFragmentManager();
43 txn = new TestFragmentTransaction(manager);
91 assertTrue(manager.addFragmentWasCalled);
92 assertEquals(manager.addFragmentContainerViewId, 111);
93 assertEquals(manager.addFragmentTag, null);
94 assertSame(manager.addFragmentFragment, fragment);
95 assertFalse(manager.addFragmentReplace);
102 assertTrue(manager.addFragmentWasCalled);
103 assertEquals(manager
[all...]
H A DInputMethodManagerTest.java19 private InputMethodManager manager; field in class:InputMethodManagerTest
24 manager = (InputMethodManager) Robolectric.application.getSystemService(Activity.INPUT_METHOD_SERVICE);
25 shadow = Robolectric.shadowOf(manager);
32 manager.showSoftInput(null, 0);
35 manager.hideSoftInputFromWindow(null, 0);
H A DTelephonyManagerTest.java23 private TelephonyManager manager; field in class:TelephonyManagerTest
29 manager = newInstanceOf(TelephonyManager.class);
30 shadowManager = shadowOf(manager);
37 manager.listen(listener, PhoneStateListener.LISTEN_CALL_STATE);
78 manager.getDeviceId();
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftcache.h159 * Face IDs are passed by the client to the cache manager, which calls,
181 * the cache manager to translate a given @FTC_FaceID into a new valid
239 /* The manager intentionally limits the total number of opened */
243 /* The manager is also used to cache `nodes' of various types while */
279 /* Create a new cache manager. */
301 /* amanager :: A handle to a new manager object. 0~in case of */
323 /* Empty a given cache manager. This simply gets rid of all the */
324 /* currently cached @FT_Face and @FT_Size objects within the manager. */
327 /* manager :: A handle to the manager
330 FTC_Manager_Reset( FTC_Manager manager ); variable
345 FTC_Manager_Done( FTC_Manager manager ); variable
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftcache.h159 * Face IDs are passed by the client to the cache manager, which calls,
181 * the cache manager to translate a given @FTC_FaceID into a new valid
239 /* The manager intentionally limits the total number of opened */
243 /* The manager is also used to cache `nodes' of various types while */
279 /* Create a new cache manager. */
301 /* amanager :: A handle to a new manager object. 0~in case of */
323 /* Empty a given cache manager. This simply gets rid of all the */
324 /* currently cached @FT_Face and @FT_Size objects within the manager. */
327 /* manager :: A handle to the manager
330 FTC_Manager_Reset( FTC_Manager manager ); variable
345 FTC_Manager_Done( FTC_Manager manager ); variable
[all...]
/external/lldb/include/lldb/Utility/
H A DSharedCluster.h24 template<class Y> shared_ptr_refcount (Y *in) : shared_count (0), manager(in) {}
34 manager->DecrementRefCount();
37 T *manager; member in class:lldb_private::imp::shared_ptr_refcount

Completed in 380 milliseconds

1234567891011>>