Lines Matching refs:manufacturer
69 pub manufacturer: String, field
86 pub manufacturer: RwLock<String>, field
117 manufacturer: RwLock::new(create_params.manufacturer.clone()), in new()
138 proto_chip.manufacturer.clone_from(&self.manufacturer.read().unwrap()); in get()
146 if !patch.manufacturer.is_empty() { in patch()
147 self.manufacturer.write().unwrap().clone_from(&patch.manufacturer); in patch()
232 manufacturer: MANUFACTURER.to_string(), in new_test_chip()
265 assert_eq!(chip.manufacturer.read().unwrap().to_string(), MANUFACTURER); in test_new_and_get_with_singleton()
299 expected.manufacturer.clone_from(&chip.manufacturer.read().unwrap()); in test_chip_get()
317 patch_body.manufacturer = "patched_manufacturer".to_string(); in test_chip_patch()
324 assert_eq!(patch_body.manufacturer, chip.manufacturer.read().unwrap().to_string()); in test_chip_patch()