Lines Matching refs:temp_buf
35 struct arvo_mode_key temp_buf; in arvo_sysfs_show_mode_key() local
40 &temp_buf, sizeof(struct arvo_mode_key)); in arvo_sysfs_show_mode_key()
45 return sysfs_emit(buf, "%d\n", temp_buf.state); in arvo_sysfs_show_mode_key()
55 struct arvo_mode_key temp_buf; in arvo_sysfs_set_mode_key() local
63 temp_buf.command = ARVO_COMMAND_MODE_KEY; in arvo_sysfs_set_mode_key()
64 temp_buf.state = state; in arvo_sysfs_set_mode_key()
68 &temp_buf, sizeof(struct arvo_mode_key)); in arvo_sysfs_set_mode_key()
85 struct arvo_key_mask temp_buf; in arvo_sysfs_show_key_mask() local
90 &temp_buf, sizeof(struct arvo_key_mask)); in arvo_sysfs_show_key_mask()
95 return sysfs_emit(buf, "%d\n", temp_buf.key_mask); in arvo_sysfs_show_key_mask()
105 struct arvo_key_mask temp_buf; in arvo_sysfs_set_key_mask() local
113 temp_buf.command = ARVO_COMMAND_KEY_MASK; in arvo_sysfs_set_key_mask()
114 temp_buf.key_mask = key_mask; in arvo_sysfs_set_key_mask()
118 &temp_buf, sizeof(struct arvo_key_mask)); in arvo_sysfs_set_key_mask()
131 struct arvo_actual_profile temp_buf; in arvo_get_actual_profile() local
135 &temp_buf, sizeof(struct arvo_actual_profile)); in arvo_get_actual_profile()
140 return temp_buf.actual_profile; in arvo_get_actual_profile()
159 struct arvo_actual_profile temp_buf; in arvo_sysfs_set_actual_profile() local
170 temp_buf.command = ARVO_COMMAND_ACTUAL_PROFILE; in arvo_sysfs_set_actual_profile()
171 temp_buf.actual_profile = profile; in arvo_sysfs_set_actual_profile()
175 &temp_buf, sizeof(struct arvo_actual_profile)); in arvo_sysfs_set_actual_profile()