Lines Matching refs:id_string
1914 std::memcpy(record.body.id_string, name.c_str(), in constructSensorSdr()
1915 std::min(name.length() + 1, sizeof(record.body.id_string))); in constructSensorSdr()
2018 auto id_string = sensor->second.sensorName; in constructStaticSensorSdr() local
2020 if (id_string.empty()) in constructStaticSensorSdr()
2022 id_string = sensor->second.sensorNameFunc(sensor->second); in constructStaticSensorSdr()
2025 if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH) in constructStaticSensorSdr()
2032 get_sdr::body::set_id_strlen(id_string.length(), &(record.body)); in constructStaticSensorSdr()
2035 std::strncpy(record.body.id_string, id_string.c_str(), in constructStaticSensorSdr()
2098 int nameSize = std::min(name.size(), sizeof(record.body.id_string)); in constructVrSdr()
2101 std::memset(record.body.id_string, 0x00, sizeof(record.body.id_string)); in constructVrSdr()
2102 std::memcpy(record.body.id_string, name.c_str(), nameSize); in constructVrSdr()