Lines Matching refs:cfg
305 bool *cfg) in __test_dev_config_update_bool() argument
309 if (strtobool(buf, cfg) < 0) in __test_dev_config_update_bool()
318 bool *cfg) in test_dev_config_update_bool() argument
323 ret = __test_dev_config_update_bool(buf, size, cfg); in test_dev_config_update_bool()
342 static ssize_t test_dev_config_show_int(char *buf, int cfg) in test_dev_config_show_int() argument
347 val = cfg; in test_dev_config_show_int()
353 static inline int __test_dev_config_update_u8(const char *buf, size_t size, u8 *cfg) in __test_dev_config_update_u8() argument
365 *(u8 *)cfg = new; in __test_dev_config_update_u8()
371 static int test_dev_config_update_u8(const char *buf, size_t size, u8 *cfg) in test_dev_config_update_u8() argument
376 ret = __test_dev_config_update_u8(buf, size, cfg); in test_dev_config_update_u8()
382 static ssize_t test_dev_config_show_u8(char *buf, u8 cfg) in test_dev_config_show_u8() argument
387 val = cfg; in test_dev_config_show_u8()