HomeSort by relevance Sort by last modified time
    Searched full:manager (Results 1 - 25 of 1576) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/063-process-manager/
expected.txt 1 process manager: nonexistent
5 process manager: RUNNABLE
7 process manager: WAITING
11 process manager: RUNNABLE
13 process manager: WAITING
  /external/bluetooth/bluez/test/
test-manager 22 manager = dbus.Interface(bus.get_object('org.bluez', '/'),
23 'org.bluez.Manager')
25 manager.connect_to_signal("AdapterAdded", adapter_added)
27 manager.connect_to_signal("AdapterRemoved", adapter_removed)
29 manager.connect_to_signal("DefaultAdapterChanged", default_changed)
32 path = manager.DefaultAdapter()
dbusdef.py 11 manager = dbus.Interface(bus.get_object('org.bluez', '/'), 'org.bluez.Manager') variable
14 adapter = dbus.Interface(bus.get_object('org.bluez', manager.DefaultAdapter()), 'org.bluez.Adapter')
test-network 9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), variable
10 "org.bluez.Manager")
12 adapter = dbus.Interface(bus.get_object("org.bluez", manager.DefaultAdapter()),
test-serial 9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), variable
10 "org.bluez.Manager")
12 adapter = dbus.Interface(bus.get_object("org.bluez", manager.DefaultAdapter()),
test-service 9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager") variable
11 adapter = dbus.Interface(bus.get_object("org.bluez", manager.FindAdapter("any")),
  /frameworks/base/core/java/android/pim/
package.html 4 Provides helpers for working with PIM (Personal Information Manager) data used
  /hardware/ti/wlan/wl1271/stad/src/Application/
scanMngrApi.h 35 * \brief This file include public definitions for the scan manager module, comprising its API.
67 * \brief Scan Manager Result Status
138 * \brief Creates the scan manager object
141 * \return Handle to the Scan Manager Object on Success, NULL otherwise
144 * Creates (allocates) the scan manager object and its database
150 * \brief Initializes the scan manager
156 * Initializes the scan manager object with other object handlers called by the driver core logic,
157 * and creates Scan Manager Timer
163 * \brief Unloads the scan manager object
165 * \param hScanMngr - Handle to the scan manager object to unloa
    [all...]
roamingMngrApi.h 35 * \brief Internal Roaming Manager API
42 * MODULE: Roaming Manager *
43 * PURPOSE: Roaming Manager Module API *
106 /*** Roaming manager parameters that can be configured externally ***/
118 bssList_t *pListOfAPs; /* list of BSS received from Scan Manager */
126 TI_HANDLE hRoamingSm; /* Roaming manager SM handle */
131 /* Roaming manager handles to other objects */
179 * \brief Create the Roaming Manager context
182 * \return A pointer to the roaming manager handler on success,
186 * Creates the Roaming Manager context: \
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Application/
scanMngrApi.h 35 * \brief This file include public definitions for the scan manager module, comprising its API.
67 * \brief Scan Manager Result Status
138 * \brief Creates the scan manager object
141 * \return Handle to the Scan Manager Object on Success, NULL otherwise
144 * Creates (allocates) the scan manager object and its database
150 * \brief Initializes the scan manager
156 * Initializes the scan manager object with other object handlers called by the driver core logic,
157 * and creates Scan Manager Timer
163 * \brief Unloads the scan manager object
165 * \param hScanMngr - Handle to the scan manager object to unloa
    [all...]
roamingMngrApi.h 35 * \brief Internal Roaming Manager API
42 * MODULE: Roaming Manager *
43 * PURPOSE: Roaming Manager Module API *
106 /*** Roaming manager parameters that can be configured externally ***/
118 bssList_t *pListOfAPs; /* list of BSS received from Scan Manager */
126 TI_HANDLE hRoamingSm; /* Roaming manager SM handle */
131 /* Roaming manager handles to other objects */
178 * \brief Create the Roaming Manager context
181 * \return A pointer to the roaming manager handler on success,
185 * Creates the Roaming Manager context: \
    [all...]
  /development/samples/SampleSyncAdapter/
_index.html 4 — the account manager and the synchronization manager (through a sync
9 manager</a> allows sharing of credentials across multiple applications and
12 account manager to obtain an auth token for the account. An authenticator (a
13 pluggable component of account manager) requests credentials from the user,
15 stores them to the account manager. This sample demonstrates how to write an
21 account type and ContentProvider authority to the sync manager. This sample
25 <code>onPerformSync()</code> method, which gets called whenever the sync manager
32 account will be added to your phone's account manager. You can go to "Settings |
  /external/e2fsprogs/lib/ext2fs/
io_manager.c 2 * io_manager.c --- the I/O manager abstraction
32 if (!channel->manager->set_option)
50 retval = (channel->manager->set_option)(channel, ptr, arg);
64 if (channel->manager->write_byte)
65 return channel->manager->write_byte(channel, offset,
ext2_io.h 2 * io.h --- the I/O manager abstraction
34 io_manager manager; member in struct:struct_io_channel
82 #define io_channel_close(c) ((c)->manager->close((c)))
83 #define io_channel_set_blksize(c,s) ((c)->manager->set_blksize((c),s))
84 #define io_channel_read_blk(c,b,n,d) ((c)->manager->read_blk((c),b,n,d))
85 #define io_channel_write_blk(c,b,n,d) ((c)->manager->write_blk((c),b,n,d))
86 #define io_channel_flush(c) ((c)->manager->flush((c)))
  /frameworks/base/location/tests/locationtests/src/android/location/
LocationManagerTest.java 32 private LocationManager manager; field in class:LocationManagerTest
37 manager = (LocationManager) mContext.getSystemService(Context.LOCATION_SERVICE);
38 assertNotNull(manager);
42 LocationProvider p = manager.getProvider("bogus");
47 LocationProvider p = manager.getProvider("network");
52 LocationProvider p = manager.getProvider("gps");
57 String p = manager.getBestProvider(new Criteria(), true);
64 String p = manager.getBestProvider(c, true);
68 p = manager.getBestProvider(c, true);
72 p = manager.getBestProvider(c, true)
    [all...]
  /dalvik/libcore/security/src/test/java/tests/security/permissions/
JavaLangRuntimeTest.java 53 notes = "Verifies that Runtime.exec calls checkExec method on security manager",
59 notes = "Verifies that Runtime.exec calls checkExec method on security manager",
65 notes = "Verifies that Runtime.exec calls checkExec method on security manager",
71 notes = "Verifies that Runtime.exec calls checkExec method on security manager",
103 assertTrue("Runtime.exec must call checkExcec on security manager", s.called);
108 assertTrue("Runtime.exec must call checkExcec on security manager", s.called);
113 assertTrue("Runtime.exec must call checkExcec on security manager", s.called);
118 assertTrue("Runtime.exec must call checkExcec on security manager", s.called);
125 notes = "Verifies that addShutdownHook and remove ShutdownHook call checkPermission on security manager., disabled due to implementation bug, see ticket #55",
131 notes = "Verifies that addShutdownHook and remove ShutdownHook call checkPermission on security manager., disabled due to implementation bug, see ticket #55"
    [all...]
JavaLangSystemTest.java 58 notes = "Verifies that getProperties and setProperties call checkPropertiesAccess on security manager.",
64 notes = "Verifies that getProperties and setProperties call checkPropertiesAccess on security manager.",
93 assertTrue("System.getProperties must call checkPropertiesAccess on security manager", s.called);
97 assertTrue("System.setProperties must call checkPropertiesAccess on security manager", s.called);
103 notes = "Verifies that System.getProperty calls checkPropertyAccess on security manager.",
109 notes = "Verifies that System.getProperty calls checkPropertyAccess on security manager.",
141 assertTrue("System.getProperty must call checkPropertyAccess on security manager", s.called);
146 assertTrue("System.getProperty must call checkPropertyAccess on security manager", s.called);
152 notes = "Verifies that System.setProperty method calls checkPermission of security manager.",
178 assertTrue("System.setProperty must call checkPermission on security manager", s.called)
    [all...]
JavaIoFileTest.java 57 notes = "Verifies that File.delete and File.deleteOnExit methods call checkDelete on security manager.",
63 notes = "Verifies that File.delete and File.deleteOnExit methods call checkDelete on security manager.",
100 assertTrue("File.delete must call checkDelete on security manager", s.called);
105 assertTrue("File.deleteOnExit must call checkDelete on security manager", s.called);
112 notes = "Verifies that File.exists(), File.canRead(), File.isFile(), File.isDirectory(), File.isHidden(), File.lastModified(), File.length(), File.list(...), File.listFiles(...) methods call checkRead method of security manager.",
118 notes = "Verifies that File.exists(), File.canRead(), File.isFile(), File.isDirectory(), File.isHidden(), File.lastModified(), File.length(), File.list(...), File.listFiles(...) methods call checkRead method of security manager.",
124 notes = "Verifies that File.exists(), File.canRead(), File.isFile(), File.isDirectory(), File.isHidden(), File.lastModified(), File.length(), File.list(...), File.listFiles(...) methods call checkRead method of security manager.",
130 notes = "Verifies that File.exists(), File.canRead(), File.isFile(), File.isDirectory(), File.isHidden(), File.lastModified(), File.length(), File.list(...), File.listFiles(...) methods call checkRead method of security manager.",
136 notes = "Verifies that File.exists(), File.canRead(), File.isFile(), File.isDirectory(), File.isHidden(), File.lastModified(), File.length(), File.list(...), File.listFiles(...) methods call checkRead method of security manager.",
142 notes = "Verifies that File.exists(), File.canRead(), File.isFile(), File.isDirectory(), File.isHidden(), File.lastModified(), File.length(), File.list(...), File.listFiles(...) methods call checkRead method of security manager."
    [all...]
  /external/bluetooth/bluez/serial/
Makefile.am 8 manager.h manager.c port.h port.c \
  /dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogManagerTest.java 63 LogManager manager = LogManager.getLogManager(); field in class:LogManagerTest
77 static final String MANAGER_CLASS = "java.util.logging.config.manager";
253 assertTrue(manager.addLogger(foo));
254 assertSame(manager.getLogger(""), manager.getLogger("testAddGetLogger_Hierachy.foo")
258 assertTrue(manager.addLogger(otherChild));
259 assertTrue(manager.addLogger(grandson));
285 Logger realRoot = manager.getLogger("");
287 manager.addLogger(fooGrandChild);
290 manager.addLogger(root)
445 LogManager manager = LogManager.getLogManager(); local
1295 LogManager manager = LogManager.getLogManager(); local
1326 LogManager manager = LogManager.getLogManager(); local
1358 LogManager manager = LogManager.getLogManager(); local
1365 LogManager manager = LogManager.getLogManager(); local
1458 LogManager manager = LogManager.getLogManager(); local
1474 LogManager manager = LogManager.getLogManager(); local
    [all...]
  /development/samples/BackupRestore/
_index.html 2 application developer can take when integrating with the Android Backup Manager
  /frameworks/base/core/java/android/util/
Pools.java 26 public static <T extends Poolable<T>> Pool<T> simplePool(PoolableManager<T> manager) {
27 return new FinitePool<T>(manager);
30 public static <T extends Poolable<T>> Pool<T> finitePool(PoolableManager<T> manager, int limit) {
31 return new FinitePool<T>(manager, limit);
  /packages/apps/IM/src/com/android/im/imps/
AsyncTransaction.java 28 AsyncTransaction(ImpsTransactionManager manager) {
29 this(manager, null);
32 AsyncTransaction(ImpsTransactionManager manager, AsyncCompletion completion) {
33 mTransManager = manager;
35 manager.beginClientTransaction(this);
  /packages/providers/DownloadProvider/res/values/
strings.xml 18 <!-- This is the name of the Download Manager application. -->
19 <string name="app_label">Download Manager</string>
22 Android Download Manager. It is displayed as part of the description
24 This specific permission controls access to the Download Manager by
26 <string name="permlab_downloadManager">Access download manager.</string>
28 Android Download Manager. It is displayed as part of the description
30 This specific permission controls access to the Download Manager by
33 access the download manager and to use it to download files.
38 Android Download Manager. It is displayed as part of the description
41 dangerous) features from the Download Manager that are needed b
    [all...]
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
ManagerFactoryParameters.java 21 * The marker interface for key manager factory parameters. Its purpose is to
22 * group key manager factory parameters objects.

Completed in 173 milliseconds

1 2 3 4 5 6 7 8 91011>>