Lines Matching refs:store
165 ssize_t (*store)(struct cpuidle_device *, const char *, size_t count); member
170 #define define_one_rw(_name, show, store) \ argument
171 static struct cpuidle_attr attr_##_name = __ATTR(_name, 0644, show, store)
211 if (cattr->store) { in cpuidle_store()
213 ret = cattr->store(dev, buf, count); in cpuidle_store()
221 .store = cpuidle_store,
241 ssize_t (*store)(struct cpuidle_state *, \ member
248 #define define_one_state_rw(_name, show, store) \ argument
249 static struct cpuidle_state_attr attr_##_name = __ATTR(_name, 0644, show, store)
360 if (cattr->store) in cpuidle_state_store()
361 ret = cattr->store(state, state_usage, buf, size); in cpuidle_state_store()
368 .store = cpuidle_state_store,
460 ssize_t (*store)(struct cpuidle_driver *, const char *, size_t); member
500 if (dattr->store) in cpuidle_driver_store()
501 ret = dattr->store(driver_kobj->drv, buf, size); in cpuidle_driver_store()
510 .store = cpuidle_driver_store,