Lines Matching refs:temp_buf

33 	struct arvo_mode_key temp_buf;  in arvo_sysfs_show_mode_key()  local
38 &temp_buf, sizeof(struct arvo_mode_key)); in arvo_sysfs_show_mode_key()
43 return sysfs_emit(buf, "%d\n", temp_buf.state); in arvo_sysfs_show_mode_key()
53 struct arvo_mode_key temp_buf; in arvo_sysfs_set_mode_key() local
61 temp_buf.command = ARVO_COMMAND_MODE_KEY; in arvo_sysfs_set_mode_key()
62 temp_buf.state = state; in arvo_sysfs_set_mode_key()
66 &temp_buf, sizeof(struct arvo_mode_key)); in arvo_sysfs_set_mode_key()
83 struct arvo_key_mask temp_buf; in arvo_sysfs_show_key_mask() local
88 &temp_buf, sizeof(struct arvo_key_mask)); in arvo_sysfs_show_key_mask()
93 return sysfs_emit(buf, "%d\n", temp_buf.key_mask); in arvo_sysfs_show_key_mask()
103 struct arvo_key_mask temp_buf; in arvo_sysfs_set_key_mask() local
111 temp_buf.command = ARVO_COMMAND_KEY_MASK; in arvo_sysfs_set_key_mask()
112 temp_buf.key_mask = key_mask; in arvo_sysfs_set_key_mask()
116 &temp_buf, sizeof(struct arvo_key_mask)); in arvo_sysfs_set_key_mask()
129 struct arvo_actual_profile temp_buf; in arvo_get_actual_profile() local
133 &temp_buf, sizeof(struct arvo_actual_profile)); in arvo_get_actual_profile()
138 return temp_buf.actual_profile; in arvo_get_actual_profile()
157 struct arvo_actual_profile temp_buf; in arvo_sysfs_set_actual_profile() local
168 temp_buf.command = ARVO_COMMAND_ACTUAL_PROFILE; in arvo_sysfs_set_actual_profile()
169 temp_buf.actual_profile = profile; in arvo_sysfs_set_actual_profile()
173 &temp_buf, sizeof(struct arvo_actual_profile)); in arvo_sysfs_set_actual_profile()