HomeSort by relevance Sort by last modified time
    Searched defs:sm (Results 101 - 125 of 222) sorted by null

1 2 3 45 6 7 8 9

  /frameworks/av/media/ndk/
NdkMediaDrm.cpp 150 sp<IServiceManager> sm = defaultServiceManager(); local
153 sm->getService(String16("media.player"));
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 140 private void mountObb(StorageManager sm, final int resource, final File file,
146 sm.mountObb(file.getPath(), null, observer));
152 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
161 private ObbObserver mountObbWithoutWait(final StorageManager sm, final int resource,
166 assertTrue("mountObb call on " + file.getPath() + " should succeed", sm.mountObb(file
172 private void waitForObbActionCompletion(final StorageManager sm, final File file,
176 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
186 private String checkMountedPath(final StorageManager sm, final File file) {
187 final String mountPath = sm.getMountedObbPath(file.getPath());
194 private void unmountObb(final StorageManager sm, final File file, int expectedState)
213 StorageManager sm = getStorageManager(); local
232 StorageManager sm = getStorageManager(); local
247 StorageManager sm = getStorageManager(); local
263 StorageManager sm = getStorageManager(); local
    [all...]
  /hardware/intel/common/libmix/videoencoder/
IntelMetadataBuffer.cpp 231 sp<IServiceManager> sm = defaultServiceManager(); local
232 sp<IBinder> binder = sm->checkService(String16("media.IntelBufferSharing"));
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
StateMachineTest.java 64 private void dumpLogRecs(StateMachine sm) {
65 int size = sm.getLogRecSize();
66 tlog("size=" + size + " count=" + sm.getLogRecCount());
68 LogRec lr = sm.getLogRec(i);
1517 StateMachineUnhandledMessage sm = new StateMachineUnhandledMessage("smUnhandledMessage"); local
1647 Hsm1 sm = new Hsm1(HSM1_TAG); local
1796 Hsm1 sm = Hsm1.makeHsm1(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Tethering.java 225 TetherInterfaceSM sm = mIfaces.get(iface);
227 if (sm == null) {
228 sm = new TetherInterfaceSM(iface, mLooper, usb);
229 mIfaces.put(iface, sm);
230 sm.start();
237 } else if (sm != null) {
238 sm.sendMessage(TetherInterfaceSM.CMD_INTERFACE_DOWN);
297 TetherInterfaceSM sm = mIfaces.get(iface); local
298 if (sm != null) {
302 sm = new TetherInterfaceSM(iface, mLooper, usb)
311 TetherInterfaceSM sm = mIfaces.get(iface); local
325 TetherInterfaceSM sm = null; local
343 TetherInterfaceSM sm = null; local
360 TetherInterfaceSM sm = null; local
388 TetherInterfaceSM sm = mIfaces.get(iface); local
677 TetherInterfaceSM sm = mIfaces.get(key); local
695 TetherInterfaceSM sm = mIfaces.get(key); local
717 TetherInterfaceSM sm = mIfaces.get(key); local
1501 TetherInterfaceSM sm = (TetherInterfaceSM)o; local
    [all...]
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_cp.c 97 static int changed_cipher(struct ieee802_1x_cp_sm *sm)
99 return sm->confidentiality_offset != sm->cipher_offset ||
100 os_memcmp(sm->current_cipher_suite, sm->cipher_suite,
105 static int changed_connect(struct ieee802_1x_cp_sm *sm)
107 return sm->connect != SECURE || sm->chgd_server || changed_cipher(sm);
115 sm->controlled_port_enabled = FALSE
435 struct ieee802_1x_cp_sm *sm; local
514 struct ieee802_1x_cp_sm *sm = eloop_ctx; local
545 struct ieee802_1x_cp_sm *sm = cp_ctx; local
556 struct ieee802_1x_cp_sm *sm = (struct ieee802_1x_cp_sm *)cp_ctx; local
567 struct ieee802_1x_cp_sm *sm = cp_ctx; local
578 struct ieee802_1x_cp_sm *sm = cp_ctx; local
589 struct ieee802_1x_cp_sm *sm = cp_ctx; local
600 struct ieee802_1x_cp_sm *sm = cp_ctx; local
610 struct ieee802_1x_cp_sm *sm = cp_ctx; local
623 struct ieee802_1x_cp_sm *sm = cp_ctx; local
633 struct ieee802_1x_cp_sm *sm = cp_ctx; local
643 struct ieee802_1x_cp_sm *sm = cp_ctx; local
654 struct ieee802_1x_cp_sm *sm = cp_ctx; local
664 struct ieee802_1x_cp_sm *sm = cp_ctx; local
674 struct ieee802_1x_cp_sm *sm = cp_ctx; local
684 struct ieee802_1x_cp_sm *sm = cp_ctx; local
694 struct ieee802_1x_cp_sm *sm = cp_ctx; local
704 struct ieee802_1x_cp_sm *sm = cp_ctx; local
723 struct ieee802_1x_cp_sm *sm = cp_ctx; local
732 struct ieee802_1x_cp_sm *sm = eloop_ctx; local
741 struct ieee802_1x_cp_sm *sm = eloop_ctx; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 451 * @sm: WPS UPnP state machine from upnp_wps_device_init()
454 * subscribed UPnP control points. sm->wlanevent must have been set with the
457 static void upnp_wps_device_send_event(struct upnp_wps_device_sm *sm)
470 if (dl_list_empty(&sm->subscriptions)) {
476 if (now.sec != sm->last_event_sec) {
477 sm->last_event_sec = now.sec;
478 sm->num_events_in_sec = 1;
480 sm->num_events_in_sec++;
488 if (sm->num_events_in_sec > MAX_EVENTS_PER_SEC &&
489 sm->wlanevent_type =
1121 struct upnp_wps_device_sm *sm; local
    [all...]
wps_upnp_web.c 183 struct upnp_wps_device_sm *sm,
302 static void web_connection_parse_get(struct upnp_wps_device_sm *sm,
317 iface = dl_list_first(&sm->interfaces,
395 format_wps_device_xml(iface, sm, buf);
413 web_process_get_device_info(struct upnp_wps_device_sm *sm,
421 iface = dl_list_first(&sm->interfaces,
466 web_process_put_message(struct upnp_wps_device_sm *sm, char *data,
476 iface = dl_list_first(&sm->interfaces,
504 web_process_put_wlan_response(struct upnp_wps_device_sm *sm, char *data,
583 dl_list_for_each(iface, &sm->interfaces
1271 struct upnp_wps_device_sm *sm = ctx; local
    [all...]
  /frameworks/av/media/libmedia/
AudioSystem.cpp 55 sp<IServiceManager> sm = defaultServiceManager(); local
58 binder = sm->getService(String16("media.audio_flinger"));
571 sp<IServiceManager> sm = defaultServiceManager(); local
574 binder = sm->getService(String16("media.audio_policy"));
    [all...]
  /frameworks/av/media/libstagefright/omx/tests/
OMXHarness.cpp 59 sp<IServiceManager> sm = defaultServiceManager(); local
60 sp<IBinder> binder = sm->getService(String16("media.player"));
  /frameworks/base/core/tests/coretests/src/android/os/storage/
AsecTests.java 565 StorageManager sm = (StorageManager) mContext.getSystemService(Context.STORAGE_SERVICE); local
566 sm.registerListener(observer);
581 sm.unregisterListener(observer);
625 StorageManager sm = (StorageManager) mContext.getSystemService(Context.STORAGE_SERVICE); local
633 sm.registerListener(observer);
650 sm.unregisterListener(observer);
  /frameworks/base/rs/java/android/renderscript/
Mesh.java 810 Mesh sm = smb.create(); local
812 sm.getVertexAllocation(0).copy1DRangeFromUnchecked(0, mMaxIndex, mVtxData);
815 sm.getVertexAllocation(0).syncAll(Allocation.USAGE_SCRIPT);
819 sm.getIndexSetAllocation(0).copy1DRangeFromUnchecked(0, mIndexCount, mIndexData);
821 sm.getIndexSetAllocation(0).syncAll(Allocation.USAGE_SCRIPT);
824 return sm;
  /frameworks/native/cmds/atrace/
atrace.cpp 408 sp<IServiceManager> sm = defaultServiceManager(); local
409 Vector<String16> services = sm->listServices();
411 sp<IBinder> obj = sm->checkService(services[i]);
  /external/javassist/src/main/javassist/
CtBehavior.java 631 StackMap sm = (StackMap)ca.getAttribute(StackMap.tag); local
632 if (sm != null)
633 sm.insertLocal(where, StackMapTable.typeTagOf(typeDesc), classInfo);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 846 StackMap sm = (StackMap)ca.getAttribute(StackMap.tag); local
847 if (sm != null)
848 sm.shiftPc(where, gapLength, exclusive);
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 629 SecurityManager sm = System.getSecurityManager(); local
630 if (sm == null) {
    [all...]
  /external/libhevc/common/x86/
ihevc_intra_pred_filters_sse42_intr.c 413 __m128i sm = _mm_loadu_si128((__m128i *)&IHEVCE_SHUFFLEMASK5[0]); local
462 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
604 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
684 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
800 src_temp4 = _mm_shuffle_epi8(src_temp4, sm);
949 __m128i sm = _mm_loadu_si128((__m128i *)&IHEVCE_SHUFFLEMASK4[0]); local
    [all...]
  /external/valgrind/main/VEX/unused/
linker.c 221 StringMap* sm = malloc(sizeof(StringMap)); local
222 sm->sm_size = 10;
223 sm->sm_used = 0;
224 sm->maplets = malloc(10 * sizeof(Maplet));
225 return sm;
228 static void delete_StringMap ( StringMap* sm )
230 assert(sm->maplets != NULL);
231 free(sm->maplets);
232 sm->maplets = NULL;
233 free(sm);
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_1x.c 123 struct eapol_state_machine *sm = sta->eapol_sm; local
125 if (sm == NULL)
156 if (sm->eap_if->eapKeyData == NULL || sm->eap_if->eapKeyDataLen < 64) {
171 os_memcpy(ekey + sizeof(key->key_iv), sm->eap_if->eapKeyData, 32);
180 hmac_md5(sm->eap_if->eapKeyData + 32, 32, buf, sizeof(*hdr) + len,
184 " (%s index=%d)", MAC2STR(sm->addr),
196 struct eapol_state_machine *sm = sta->eapol_sm; local
198 if (sm == NULL || !sm->eap_if->eapKeyData
541 struct eapol_state_machine *sm = sta->eapol_sm; local
673 struct eapol_state_machine *sm = sta->eapol_sm; local
1086 struct eapol_state_machine *sm = sta->eapol_sm; local
1113 struct eapol_state_machine *sm = sta->eapol_sm; local
1193 struct eapol_state_machine *sm = sta->eapol_sm; local
1233 struct eapol_state_machine *sm = sta->eapol_sm; local
1289 struct eapol_state_machine *sm = sta->eapol_sm; local
1319 struct eapol_state_machine *sm = sta->eapol_sm; local
1483 struct eapol_state_machine *sm; member in struct:sta_id_search
1492 struct eapol_state_machine *sm = sta->eapol_sm; local
1532 struct eapol_state_machine *sm; local
1690 struct eapol_state_machine *sm = sta->eapol_sm; local
1812 struct eapol_state_machine *sm = sta->eapol_sm; local
2235 struct eapol_state_machine *sm = sta->eapol_sm; local
    [all...]
wpa_auth_ft.c 26 static int wpa_ft_send_rrb_auth_resp(struct wpa_state_machine *sm,
303 static int wpa_ft_pull_pmk_r1(struct wpa_state_machine *sm,
310 r0kh = sm->wpa_auth->conf.r0kh_list;
312 if (r0kh->id_len == sm->r0kh_id_len &&
313 os_memcmp_const(r0kh->id, sm->r0kh_id, sm->r0kh_id_len) ==
320 sm->r0kh_id, sm->r0kh_id_len);
331 os_memcpy(frame.ap_address, sm->wpa_auth->addr, ETH_ALEN);
340 os_memcpy(sm->ft_pending_pull_nonce, f.nonce
1213 struct wpa_state_machine *sm = ctx; local
1225 struct wpa_state_machine *sm; local
1395 struct wpa_state_machine *sm = eloop_ctx; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap.c 38 static Boolean eap_sm_allowMethod(struct eap_sm *sm, int vendor,
40 static struct wpabuf * eap_sm_buildNak(struct eap_sm *sm, int id);
41 static void eap_sm_processIdentity(struct eap_sm *sm,
43 static void eap_sm_processNotify(struct eap_sm *sm, const struct wpabuf *req);
45 static void eap_sm_parseEapReq(struct eap_sm *sm, const struct wpabuf *req);
53 static Boolean eapol_get_bool(struct eap_sm *sm, enum eapol_bool_var var)
55 return sm->eapol_cb->get_bool(sm->eapol_ctx, var);
59 static void eapol_set_bool(struct eap_sm *sm, enum eapol_bool_var var,
62 sm->eapol_cb->set_bool(sm->eapol_ctx, var, value)
1336 struct eap_sm *sm = ctx; local
1405 struct eap_sm *sm; local
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa.c 28 * @sm: Pointer to WPA state machine data from wpa_sm_init()
37 void wpa_eapol_key_send(struct wpa_sm *sm, const u8 *kck,
41 if (is_zero_ether_addr(dest) && is_zero_ether_addr(sm->bssid)) {
46 if (wpa_sm_get_bssid(sm, sm->bssid) < 0) {
47 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
51 dest = sm->bssid;
52 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
60 wpa_msg(sm->ctx->msg_ctx, MSG_ERROR,
68 wpa_sm_ether_send(sm, dest, proto, msg, msg_len)
488 struct wpa_sm *sm = eloop_ctx; local
539 struct wpa_sm *sm = eloop_ctx; local
2003 struct wpa_sm *sm = ctx; local
2051 struct wpa_sm *sm; local
    [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 815 sp<IServiceManager> sm = defaultServiceManager(); local
816 sp<IBinder> binder = sm->getService(String16("media.player"));
877 sp<IServiceManager> sm = defaultServiceManager(); local
878 sp<IBinder> binder = sm->getService(String16("media.player"));
891 sp<IServiceManager> sm = defaultServiceManager(); local
892 sp<IBinder> binder = sm->getService(String16("media.player"));
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.cpp 1692 sp<IServiceManager> sm = defaultServiceManager(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 359 final StorageManager sm = StorageManager.from(getContext()); local
360 mMemLowThreshold = sm.getStorageLowBytes(DATA_PATH);
361 mMemFullThreshold = sm.getStorageFullBytes(DATA_PATH);

Completed in 1183 milliseconds

1 2 3 45 6 7 8 9