Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/bta/ag/
Dbta_ag_at.cc147 long long int_arg_ll = std::atoll(p_arg); in bta_ag_process_at() local
148 if (int_arg_ll >= (1ll << 32) || int_arg_ll < 0) int_arg_ll = -1; in bta_ag_process_at()
151 if (int_arg_ll > 0 && (int_arg_ll & (~0xfffll))) { in bta_ag_process_at()
152 log::warn("BRSF: reserved bit is set: 0x{:x}", int_arg_ll); in bta_ag_process_at()
153 int_arg_ll &= 0xfffll; in bta_ag_process_at()
156 int_arg = static_cast<int16_t>(int_arg_ll); in bta_ag_process_at()