Lines Matching refs:device_data
94 bool collect_device_data(const std::string &modem_id, std::string *device_data) { in collect_device_data() argument
111 device_data->push_back(len); in collect_device_data()
112 device_data->append(modem_id); in collect_device_data()
128 device_data->push_back(len); in collect_device_data()
129 device_data->append(value_ptr); in collect_device_data()
329 std::string device_data; in handle_lock_state() local
330 device_data.push_back(lockVal); in handle_lock_state()
331 if (!collect_device_data(args[4], &device_data)) { in handle_lock_state()
336 for (std::string::iterator it = device_data.begin(); in handle_lock_state()
337 it != device_data.end(); ++it) { in handle_lock_state()
345 const uint8_t *data = reinterpret_cast<const uint8_t *>(device_data.data()); in handle_lock_state()
346 res = ese_boot_lock_xset(session, lockId, data, device_data.length()); in handle_lock_state()