Home
last modified time | relevance | path

Searched refs:nlen (Results 1 – 9 of 9) sorted by relevance

/aosp12/system/nfc/src/nfc/tags/
H A Dce_t4t.cc128 p_t4t->nlen, p_t4t->max_file_size, in ce_t4t_select_file()
190 UINT16_TO_BE_STREAM(p_dst, p_t4t->nlen); in ce_t4t_read_binary()
198 UINT8_TO_BE_STREAM(p_dst, (uint8_t)(p_t4t->nlen)); in ce_t4t_read_binary()
256 UINT16_TO_BE_STREAM(p, p_t4t->nlen); in ce_t4t_update_binary()
264 BE_STREAM_TO_UINT16(p_t4t->nlen, p); in ce_t4t_update_binary()
272 if ((starting_offset == 0) && (p_t4t->nlen > 0)) { in ce_t4t_update_binary()
277 ce_data.update_info.length = p_t4t->nlen; in ce_t4t_update_binary()
873 p_t4t->nlen = ndef_msg_len; in CE_T4tSetLocalNDEFMsg()
H A Drw_t4t.cc1547 uint32_t nlen; in rw_t4t_sm_detect_ndef() local
1754 BE_STREAM_TO_UINT16(nlen, p); in rw_t4t_sm_detect_ndef()
1756 BE_STREAM_TO_UINT32(nlen, p); in rw_t4t_sm_detect_ndef()
1759 if (nlen <= p_t4t->cc_file.ndef_fc.max_file_size - in rw_t4t_sm_detect_ndef()
1797 p_t4t->ndef_length = nlen; in rw_t4t_sm_detect_ndef()
1806 rw_data.ndef.cur_size = nlen; in rw_t4t_sm_detect_ndef()
1822 __func__, nlen, p_t4t->cc_file.ndef_fc.max_file_size); in rw_t4t_sm_detect_ndef()
/aosp12/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c811 int len, nlen; in bcmstrstr() local
817 nlen = strlen(needle); in bcmstrstr()
818 len = strlen(haystack) - nlen + 1; in bcmstrstr()
821 if (memcmp(needle, &haystack[i], nlen) == 0) in bcmstrstr()
1672 int slen = 0, nlen = 0; in bcm_format_flags() local
1692 nlen = strlen(name); in bcm_format_flags()
1693 slen += nlen; in bcm_format_flags()
1701 strncpy(p, name, nlen + 1); in bcm_format_flags()
1702 p += nlen; in bcm_format_flags()
/aosp12/packages/services/Telephony/src/com/android/phone/
H A DIccNetworkDepersonalizationPanel.java126 public void beforeTextChanged(CharSequence buffer, int start, int olen, int nlen) {
129 public void onTextChanged(CharSequence buffer, int start, int olen, int nlen) {
/aosp12/system/nfc/src/nfc/include/
H A Dce_int.h93 uint16_t nlen; /* current size of NDEF message */ member
/aosp12/hardware/qcom/audio/legacy/libalsa-intf/
H A Dalsa_mixer.c81 size_t nlen = strlen(name); in is_volume() local
86 if (nlen > slen) { in is_volume()
87 l = nlen - slen; in is_volume()
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dvirtio_gpu.h186 __le32 nlen; member
H A Dsysctl.h27 int nlen; member
/aosp12/frameworks/base/core/java/android/text/
H A DTextUtils.java280 int nlen = needle.length(); in indexOf() local
281 if (nlen == 0) in indexOf()
288 if (start > end - nlen) { in indexOf()
296 if (regionMatches(s, start, needle, 0, nlen)) { in indexOf()