HomeSort by relevance Sort by last modified time
    Searched full:adapter (Results 926 - 950 of 2956) sorted by null

<<31323334353637383940>>

  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothManager.java 195 // BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
196 // if ((adapter == null) || !adapter.isEnabled()) {
200 // Log.d(this, " - BT enabled! device name " + adapter.getName()
201 // + ", address " + adapter.getAddress());
ConnectionServiceWrapper.java 65 private final class Adapter extends IConnectionServiceAdapter.Stub {
744 private final Adapter mAdapter = new Adapter();
    [all...]
  /system/bt/service/hal/
bluetooth_interface.cpp 71 VLOG(1) << "Adapter state changed: " << BtStateText(state);
80 VLOG(1) << "Adapter properties changed - status: " << BtStatusText(status)
265 // Open the Bluetooth adapter.
276 // Initialize the Bluetooth interface. Set up the adapter (Bluetooth DM) API
306 // The HAL handle that represents the underlying Bluetooth adapter. We hold a
  /system/bt/service/ipc/
linux_ipc_host.cpp 38 #include "service/adapter.h"
40 using bluetooth::Adapter;
77 LinuxIPCHost::LinuxIPCHost(int sockfd, Adapter* adapter)
78 : adapter_(adapter), pfds_(1, {sockfd, POLLIN, 0}) {}
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AlertController.java 805 * will be bound to an adapter.
810 * Called before the ListView is bound to an adapter.
855 // adapter or a cursor
881 final ListAdapter adapter; local
    [all...]
  /cts/tests/tests/print/src/android/print/cts/
PrintJobTest.java 79 * @return The mock adapter
267 // Create a print adapter that respects the print contract.
268 PrintDocumentAdapter adapter = createMockPrintDocumentAdapter();
271 print(adapter);
601 // Create a print adapter that respects the print contract.
602 PrintDocumentAdapter adapter = createMockPrintDocumentAdapter();
605 print(adapter);
PrintServicesTest.java 96 * @return The mock adapter
396 // Create a print adapter that respects the print contract.
397 PrintDocumentAdapter adapter = createMockPrintDocumentAdapter();
400 print(adapter);
541 // Create a print adapter that respects the print contract.
542 PrintDocumentAdapter adapter = createMockPrintDocumentAdapter();
545 print(adapter);
  /external/kernel-headers/original/scsi/
sg.h 63 unsigned short host_status; /* [o] errors from host adapter */
110 short h_cmd_per_lun;/* host (adapter) maximum commands per lun */
111 short d_queue_depth;/* device (or adapter) maximum queue length */
132 #define SG_EMULATED_HOST 0x2203 /* true for emulated host adapter (ATAPI) */
148 #define SG_SET_FORCE_LOW_DMA 0x2279 /* 0-> use adapter setting, 1-> force */
160 /* Yields max scatter gather tablesize allowed by current host adapter */
191 If scatter-gather is not supported by adapter then this value is the
  /frameworks/base/core/java/android/nfc/cardemulation/
NfcFCardEmulation.java 63 * @param adapter A reference to an NfcAdapter object.
66 public static synchronized NfcFCardEmulation getInstance(NfcAdapter adapter) {
67 if (adapter == null) throw new NullPointerException("NfcAdapter is null");
68 Context context = adapter.getContext();
93 INfcFCardEmulation service = adapter.getNfcFCardEmulationService();
474 NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mContext); local
475 sService = adapter.getNfcFCardEmulationService();
  /frameworks/base/docs/html/reference/android/support/wearable/view/
GridViewPager.OnAdapterChangeListener.html 275 <p>Callback interface for responding to a replaced or removed adapter.
336 <p>Called when the adapter is changed with <code><a href="/reference/android/support/wearable/view/GridViewPager.html#setAdapter(android.support.wearable.view.GridPagerAdapter)">setAdapter(GridPagerAdapter)</a></code>.
363 <p>Called when a change is made to the content of the current adapter.
427 <p>Called when the adapter is changed with <code><a href="/reference/android/support/wearable/view/GridViewPager.html#setAdapter(android.support.wearable.view.GridPagerAdapter)">setAdapter(GridPagerAdapter)</a></code>.
464 <p>Called when a change is made to the content of the current adapter.
530 <li class="api apilevel-"><a href="/reference/android/support/wearable/view/WearableListView.Adapter.html">WearableListView.Adapter</a></li>
  /frameworks/support/core-ui/java/android/support/v4/widget/
CursorAdapter.java 100 * If set the adapter will call requery() on the cursor whenever a content change
112 * If set the adapter will register a content observer on the cursor and will call
114 * using this flag: you will need to unset the current Cursor from the adapter
145 * @param autoRequery If true the adapter will call requery() on the
158 * @param flags Flags used to determine the behavior of the adapter; may
391 * by the filter attached to this adapter.
449 * this adapter.
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 185 /* Search if dhd adapter or wl adapter is present
187 * The reason for checking wl adapter is that we can still send remote dhd commands over
273 /* Verify the wl adapter found.
275 * The reason for checking wl adapter is that we can still send remote dhd commands over
302 /* Search and verify the request type of adapter (wl or dhd)
512 fprintf(stderr, "%s: wl driver adapter not found\n", av0);
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainActivity.java 207 private void displayCertChooserDialog(final CertificateAdapter adapter) {
217 lv.setAdapter(adapter);
224 adapter.notifyDataSetChanged();
228 boolean empty = adapter.mAliases.isEmpty();
245 int adapterPosition = adapter.mAliases.indexOf(alias);
250 } else if (adapter.mAliases.size() == 1) {
262 ? adapter.getItem(adapterPosition)
  /hardware/ti/omap4-aah/camera/V4LCameraAdapter/
V4LCameraAdapter.cpp 72 /*--------------------Camera Adapter Class STARTS here-----------------------------*/
89 //First allocate adapter internal buffers at V4L level for USB Cam
288 /*--------------------Camera Adapter Functions-----------------------------*/
320 CAMHAL_LOGEA("Error while adapter initialization: video capture not supported.");
326 CAMHAL_LOGEA("Error while adapter initialization: Capture device does not support streaming i/o");
434 ///API to give the buffers to Adapter
1233 CameraAdapter *adapter = NULL; local
    [all...]
  /hardware/ti/omap4-aah/camera/inc/
CameraHal.h 440 CAMERA_ERROR_HARD = 0x2, // Hard errors are hardware hangs that may be recoverable by resetting the hardware internally within the adapter
563 * Interace class abstraction for Camera Adapter to act as a frame provider
564 * This interface is fully implemented by Camera Adapter
576 /** * Wrapper class around Frame Notifier, which is used by display and notification classes for interacting with Camera Adapter
596 * Camera Adapter
951 ///Initialzes the camera adapter creates any resources required
966 //APIs to configure Camera adapter and get the current parameter set
981 //Retrieves the current Adapter state
984 //Retrieves the next Adapter state
993 // Retrieves the current Adapter state - for internal use (not locked
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
CameraHal.h 313 CAMERA_ERROR_HARD = 0x2, // Hard errors are hardware hangs that may be recoverable by resetting the hardware internally within the adapter
436 * Interace class abstraction for Camera Adapter to act as a frame provider
437 * This interface is fully implemented by Camera Adapter
449 /** * Wrapper class around Frame Notifier, which is used by display and notification classes for interacting with Camera Adapter
469 * Camera Adapter
797 ///Initialzes the camera adapter creates any resources required
812 //APIs to configure Camera adapter and get the current parameter set
833 //Retrieves the current Adapter state
836 //Retrieves the next Adapter state
845 // Retrieves the current Adapter state - for internal use (not locked
    [all...]
  /frameworks/base/docs/html/guide/topics/providers/
calendar-provider.jd 46 <li><a href="#sync-adapter">Sync Adapters</a></li>
68 <a href="#sync-adapter">Sync Adapters</a>.</p>
158 which is set by the sync adapter that
172 <li><strong>Inserting, updating, and viewing calendar events.</strong> To directly insert, modify, and read events from the Calendar Provider, you need the appropriate <a href="#manifest">permissions</a>. However, if you're not building a full-fledged calendar application or sync adapter, requesting these permissions isn't necessary. You can instead use intents supported by Android's Calendar application to hand off read and write operations to that application. When you use the intents, your application sends users to the Calendar application to perform the desired operation
180 <li><strong>Sync adapters.</strong> A sync adapter synchronizes the calendar data
186 visible unless they are accessed as a sync adapter. For more information about
187 sync adapters, see <a href="#sync-adapter">Sync Adapters</a>.</li>
214 Calendars columns are writable by both an application and a <a href="#sync-adapter">sync adapter</a>.
371 <p>Calendars are designed to be primarily managed by a sync adapter, so yo
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LinearLayoutManager.java 653 * @param firstLayoutItemDirection The direction of the first layout filling in terms of adapter
    [all...]
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssReader.java 59 * <li>The adapter feeds data to the ListView
60 * <li>Override of getView() in the adapter provides the display view
75 * Custom list adapter that fits our rss data into the list.
479 * @param adapter adapter for ui events
481 void parseRSS(InputStream in, RSSListAdapter adapter) throws IOException,
535 public RSSHandler(RSSListAdapter adapter) {
536 mAdapter = adapter;
591 public void parseRSS2(InputStream in, RSSListAdapter adapter) throws IOException {
593 DefaultHandler handler = new RSSHandler(adapter);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java 176 for (GroupAdapter adapter : mGroupAdapters) {
177 adapter.load();
287 final ChildAdapter adapter = groupAdapter.getChildAdapter(0); local
288 adapter.setContainerViewId(tab.mPersonalList);
289 adapter.prepare();
326 * Adapter for expandable list view of certificates. Groups in the view correspond to profiles
646 private AdapterData(Tab tab, GroupAdapter adapter) {
647 mAdapter = adapter;
    [all...]
  /system/bt/btif/src/
btif_core.c 84 * in the downstream path for the adapter and remote_device property APIs */
244 ** Description checks if main adapter is fully enabled
365 if(btif_config_get_str("Adapter", "Address", val, &val_size))
410 if (btif_config_get_str("Adapter", "Address", val, &val_size))
418 btif_config_set_str("Adapter", "Address", bdstr);
461 ** Notifies HAL user with updated adapter state
498 btif_config_set_str("Adapter", "Address", bdstr);
697 ** btif api adapter property functions
807 ** Description Executes adapter storage request in BTIF context
947 ** both the adapter and remote_device property AP
    [all...]
  /external/cros/system_api/dbus/
service_constants.h 188 // Bluetooth Adapter service identifiers.
192 // Bluetooth Adapter methods.
198 // Bluetooth Adapter properties.
212 // Bluetooth Adapter errors.
218 // Bluetooth Adapter parameters supplied to SetDiscoveryFilter request.
299 const char kAdapterProperty[] = "Adapter";
602 // NFC Adapter service identifiers.
604 const char kNfcAdapterInterface[] = "org.neard.Adapter";
606 // NFC Adapter methods.
612 // NFC Adapter signals
    [all...]
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 69 // An adapter between a Cursor and the Fragment's GridView
135 // Sets the View's data adapter to be a new GridViewAdapter
169 // Sets the GridView's data adapter
306 * Changes the adapter's Cursor to be the results of the load. This forces the View to
320 // Sets the Adapter's backing data to null. This prevents memory leaks.
344 * Defines a custom View adapter that extends CursorAdapter. The main reason to do this is to
  /docs/source.android.com/src/devices/audio/
midi_test.jd 46 <li> USB On-The-Go (OTG) adapter to convert a female USB-A to male micro-USB or USB-C</li>
145 <p>Hardware needed: USB MIDI keyboard, USB cable, OTG adapter</p>
159 <li> Plug in USB keyboard using the OTG adapter.</li>
182 <li> Plug in USB keyboard using the OTG adapter.</li>
198 <p>Hardware needed: USB cable, OTG adapter</p>
214 <li> Use an OTG adapter to connect the other end of the cable to a second Android
  /frameworks/base/core/java/android/app/
LauncherActivity.java 94 * Adapter which shows the set of activities that can be performed for a given intent.
181 * An array filters constrains the content of the array adapter with a prefix. Each
417 ActivityAdapter adapter = (ActivityAdapter) mAdapter; local
418 return adapter.intentForPosition(position);
427 ActivityAdapter adapter = (ActivityAdapter) mAdapter; local
428 return adapter.itemForPosition(position);

Completed in 531 milliseconds

<<31323334353637383940>>