• Home
  • Raw
  • Download

Lines Matching refs:buf

461 			   char *buf)  in config_show()  argument
469 len += snprintf(buf, PAGE_SIZE, in config_show()
473 len += snprintf(buf+len, PAGE_SIZE - len, in config_show()
477 len += snprintf(buf+len, PAGE_SIZE - len, in config_show()
483 len += snprintf(buf+len, PAGE_SIZE - len, in config_show()
487 len += snprintf(buf+len, PAGE_SIZE - len, in config_show()
491 len += snprintf(buf+len, PAGE_SIZE - len, in config_show()
495 len += snprintf(buf+len, PAGE_SIZE - len, in config_show()
566 const char *buf, size_t count) in trigger_config_store() argument
654 const char *buf, size_t count) in config_test_driver_store() argument
665 copied = config_copy_test_driver_name(config, buf, count); in config_test_driver_store()
689 char *buf) in config_test_driver_show() argument
694 return config_test_show_str(&test_dev->config_mutex, buf, in config_test_driver_show()
701 const char *buf, size_t count) in config_test_fs_store() argument
712 copied = config_copy_test_fs(config, buf, count); in config_test_fs_store()
720 char *buf) in config_test_fs_show() argument
725 return config_test_show_str(&test_dev->config_mutex, buf, in config_test_fs_show()
847 const char *buf, size_t count) in reset_store() argument
875 const char *buf, size_t size, in test_dev_config_update_uint_sync() argument
883 ret = kstrtoul(buf, 10, &new); in test_dev_config_update_uint_sync()
912 const char *buf, size_t size, in test_dev_config_update_uint_range() argument
920 ret = kstrtoul(buf, 10, &new); in test_dev_config_update_uint_range()
936 const char *buf, size_t size, in test_dev_config_update_int() argument
942 ret = kstrtol(buf, 10, &new); in test_dev_config_update_int()
957 char *buf, in test_dev_config_show_int() argument
966 return snprintf(buf, PAGE_SIZE, "%d\n", val); in test_dev_config_show_int()
970 char *buf, in test_dev_config_show_uint() argument
979 return snprintf(buf, PAGE_SIZE, "%u\n", val); in test_dev_config_show_uint()
984 const char *buf, size_t count) in test_result_store() argument
989 return test_dev_config_update_int(test_dev, buf, count, in test_result_store()
995 const char *buf, size_t count) in config_num_threads_store() argument
1000 return test_dev_config_update_uint_sync(test_dev, buf, count, in config_num_threads_store()
1007 char *buf) in config_num_threads_show() argument
1012 return test_dev_config_show_int(test_dev, buf, config->num_threads); in config_num_threads_show()
1018 const char *buf, size_t count) in config_test_case_store() argument
1023 return test_dev_config_update_uint_range(test_dev, buf, count, in config_test_case_store()
1031 char *buf) in config_test_case_show() argument
1036 return test_dev_config_show_uint(test_dev, buf, config->test_case); in config_test_case_show()
1042 char *buf) in test_result_show() argument
1047 return test_dev_config_show_int(test_dev, buf, config->test_result); in test_result_show()