Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 25 of 26) sorted by relevance

12

/packages/apps/Nfc/nci/jni/extns/pn54x/src/
DphNxpExtns.c616 struct timespec ts; in EXTNS_GetPresenceCheckStatus() local
618 clock_gettime (CLOCK_REALTIME, &ts); in EXTNS_GetPresenceCheckStatus()
619 ts.tv_sec += 0; in EXTNS_GetPresenceCheckStatus()
620 ts.tv_nsec += 100*1000*1000; // 100 milisec in EXTNS_GetPresenceCheckStatus()
621 if (ts.tv_nsec >= 1000 * 1000 * 1000) in EXTNS_GetPresenceCheckStatus()
623 ts.tv_sec += 1; in EXTNS_GetPresenceCheckStatus()
624 ts.tv_nsec = ts.tv_nsec - (1000 * 1000 * 1000); in EXTNS_GetPresenceCheckStatus()
627 if (sem_timedwait (&gAuthCmdBuf.semPresenceCheck, &ts)) in EXTNS_GetPresenceCheckStatus()
/packages/apps/Nfc/nci/jni/
DIntervalTimer.cpp50 struct itimerspec ts; in set() local
51 ts.it_value.tv_sec = ms / 1000; in set()
52 ts.it_value.tv_nsec = (ms % 1000) * 1000000; in set()
54 ts.it_interval.tv_sec = 0; in set()
55 ts.it_interval.tv_nsec = 0; in set()
57 stat = timer_settime(mTimerId, 0, &ts, 0); in set()
/packages/inputmethods/LatinIME/native/jni/
Dcom_android_inputmethod_latin_DicTraverseSession.cpp37 DicTraverseSession *ts = reinterpret_cast<DicTraverseSession *>(traverseSession); in latinime_initDicTraverseSession() local
38 if (!ts) { in latinime_initDicTraverseSession()
44 ts->init(dict, &emptyNgramContext, 0 /* suggestOptions */); in latinime_initDicTraverseSession()
50 ts->init(dict, &ngramContext, 0 /* suggestOptions */); in latinime_initDicTraverseSession()
54 DicTraverseSession *ts = reinterpret_cast<DicTraverseSession *>(traverseSession); in latinime_releaseDicTraverseSession() local
55 DicTraverseSession::releaseSessionInstance(ts); in latinime_releaseDicTraverseSession()
/packages/apps/Nfc/nxp/jni/
Dcom_android_nfc_NativeNfcManager.cpp136 struct timespec ts; in nfc_jni_download_locked() local
160 clock_gettime(CLOCK_REALTIME, &ts); in nfc_jni_download_locked()
161 ts.tv_sec += 5; in nfc_jni_download_locked()
164 if(sem_timedwait(&cb_data.sem, &ts)) in nfc_jni_download_locked()
300 struct timespec ts; in nfc_jni_initialize() local
911 struct timespec ts; in nfc_jni_Discovery_notification_callback() local
1709 struct timespec ts; in com_android_nfc_NfcManager_deinitialize() local
1736 clock_gettime(CLOCK_REALTIME, &ts); in com_android_nfc_NfcManager_deinitialize()
1737 ts.tv_sec += 5; in com_android_nfc_NfcManager_deinitialize()
1740 if(sem_timedwait(&cb_data.sem, &ts) == -1) in com_android_nfc_NfcManager_deinitialize()
Dcom_android_nfc_NativeLlcpSocket.cpp115 struct timespec ts; in com_android_nfc_NativeLlcpSocket_doConnect() local
169 struct timespec ts; in com_android_nfc_NativeLlcpSocket_doConnectBy() local
251 struct timespec ts; in com_android_nfc_NativeLlcpSocket_doSend() local
312 struct timespec ts; in com_android_nfc_NativeLlcpSocket_doReceive() local
Dcom_android_nfc_NativeLlcpConnectionlessSocket.cpp61 struct timespec ts; in com_android_nfc_NativeLlcpConnectionlessSocket_doSendTo() local
123 struct timespec ts; in com_android_nfc_NativeLlcpConnectionlessSocket_doReceiveFrom() local
Dcom_android_nfc_NativeLlcpServiceSocket.cpp74 struct timespec ts; in com_NativeLlcpServiceSocket_doAccept() local
Dcom_android_nfc_NativeP2pDevice.cpp360 struct timespec ts; in com_android_nfc_NativeP2pDevice_doReceive() local
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppProvider.java265 Long ts = values.getAsLong(BluetoothShare.TIMESTAMP); in insert() local
266 if (ts == null) { in insert()
267 ts = System.currentTimeMillis(); in insert()
269 filteredValues.put(BluetoothShare.TIMESTAMP, ts); in insert()
DBluetoothOppManager.java426 Long ts = System.currentTimeMillis(); in insertMultipleShare() local
440 values.put(BluetoothShare.TIMESTAMP, ts); in insertMultipleShare()
DTestActivity.java256 Long ts = System.currentTimeMillis();
257 values.put(BluetoothShare.TIMESTAMP, ts);
/packages/inputmethods/LatinIME/dictionaries/
Dlv_wordlist.combined.gz1dictionary=main:lv,locale=lv,description=Latviešu,date=1393228136, ...
Dsv_wordlist.combined.gz1dictionary=main:sv,locale=sv,description=Svenska,date=1414726264, ...
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
Dtr_wordlist.combined.gz
Dde_wordlist.combined.gz1dictionary=main:de,locale=de,description=Deutsch,date=1414726263, ...
Dda_wordlist.combined.gz
Dfi_wordlist.combined.gz1dictionary=main:fi,locale=fi,description=Suomi,date=1393228135, ...
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
Dpt_PT_wordlist.combined.gz
Den_GB_wordlist.combined.gz
Dpt_BR_wordlist.combined.gz
Dcs_wordlist.combined.gz1dictionary=main:cs,locale=cs,description=Čeština,date=1393228134, ...
/packages/apps/Camera/src/com/android/camera/ui/
DSwitch.java151 int ts = res.getDimensionPixelSize(R.dimen.thumb_text_size); in setSwitchTextAppearance() local
152 if (ts != mTextPaint.getTextSize()) { in setSwitchTextAppearance()
153 mTextPaint.setTextSize(ts); in setSwitchTextAppearance()

12