Lines Matching defs:count
821 /* MODULE_REF_BASE is the base reference count by kmodule loader. */
836 /* Hold reference count during initialization. */
1014 /* FIXME: if (force), slam module count damn the torpedoes */
1172 /* We don't know the usage count, or what modules are using. */
1230 const char *buffer, size_t count)
1234 rc = kobject_synth_uevent(&mk->kobj, buffer, count);
1235 return rc ? rc : count;
1560 char *buf, loff_t pos, size_t count)
1581 count = min(count, wrote);
1582 memcpy(buf, bounce, count);
1584 return count;
1672 char *buf, loff_t pos, size_t count)
1675 * The caller checked the pos and count against our size.
1677 memcpy(buf, bin_attr->private + pos, count);
1678 return count;