Searched defs:set (Results 1 - 22 of 22) sorted by relevance

/include/asm-generic/
H A Dgpio.h63 * @set: assigns output value for signal "offset"
73 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
75 * @names: if set, must be an array of strings to use as alternative
111 void (*set)(struct gpio_chip *chip, member in struct:gpio_chip
/include/linux/
H A Dregset.h64 * user_regset_set_fn - type of @set function in &struct user_regset
117 * @set: Function to store values.
121 * This data structure describes a machine resource we call a register set.
123 * actual CPU registers per se. A register set consists of a number of
140 * register set. For example, x86 GDT segment descriptors form a regset;
156 user_regset_set_fn *set; member in struct:user_regset
209 * These are helpers for writing regset get/set functions in arch code.
365 if (!regset->set)
371 return regset->set(target, regset, offset, size, NULL, data);
H A Dvirtio_config.h66 * @set: write the value of a configuration field
115 void (*set)(struct virtio_device *vdev, unsigned offset, member in struct:virtio_config_ops
H A Dsignal.h42 static inline void sigaddset(sigset_t *set, int _sig) argument
46 set->sig[0] |= 1UL << sig;
48 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW);
51 static inline void sigdelset(sigset_t *set, int _sig) argument
55 set->sig[0] &= ~(1UL << sig);
57 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW));
60 static inline int sigismember(sigset_t *set, int _sig) argument
64 return 1 & (set->sig[0] >> sig);
66 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
76 static inline int sigisemptyset(sigset_t *set) argument
158 sigemptyset(sigset_t *set) argument
170 sigfillset(sigset_t *set) argument
184 sigaddsetmask(sigset_t *set, unsigned long mask) argument
189 sigdelsetmask(sigset_t *set, unsigned long mask) argument
194 sigtestsetmask(sigset_t *set, unsigned long mask) argument
199 siginitset(sigset_t *set, unsigned long mask) argument
211 siginitsetinv(sigset_t *set, unsigned long mask) argument
[all...]
H A Dxattr.h13 #define XATTR_CREATE 0x1 /* set value, fail if attr already exists */
14 #define XATTR_REPLACE 0x2 /* set value, fail if attr does not exist */
74 int (*set)(struct dentry *dentry, const char *name, const void *buffer, member in struct:xattr_handler
H A Dmoduleparam.h43 int (*set)(const char *val, const struct kernel_param *kp); member in struct:kernel_param_ops
125 * @ops: the set & get operations for this parameter.
128 * The ops can have NULL set or get functions.
137 * @ops: the set & get operations for this parameter.
140 * The ops can have NULL set or get functions.
190 #define module_param_call(name, set, get, arg, perm) \
192 { (void *)set, (void *)get }; \
195 (perm) + sizeof(__check_old_set_param(set))*0, -1)
285 * This actually copies the string when it's set (unlike type charp).
392 /* An int, which can only be set lik
[all...]
H A Dsm501.h36 unsigned long set, unsigned long clear);
46 unsigned long set,
111 unsigned long set; member in struct:sm501_reg_init
H A Dnetfilter.h130 int (*set)(struct sock *sk, int optval, void __user *user, unsigned int len); member in struct:nf_sockopt_ops
142 /* Use the module struct to lock set/get code in place */
H A Dcapability.h26 a set of three capability sets. The transposition of 3*the
160 /* Allows set*uid(2) manipulation (including fsuid). */
171 * Transfer any capability in your permitted set to any pid,
172 * remove any capability in your permitted set from any pid
174 * Add any capability from current's capability bounding set
175 * to the current process' inheritable set
176 * Allow taking bits out of capability bounding set
496 * Check if "a" is a subset of "set".
497 * return 1 if ALL of the capabilities in "a" are also in "set"
499 * return 0 if ANY of the capabilities in "a" are not in "set"
502 cap_issubset(const kernel_cap_t a, const kernel_cap_t set) argument
[all...]
H A Dpnp.h315 #define pnp_can_write(dev) (((dev)->protocol->set) && \
413 int (*set) (struct pnp_dev *dev); member in struct:pnp_protocol
H A Dirq.h72 * IRQ_NO_BALANCING - Interrupt cannot be balanced (affinity set)
165 * IRQD_AFFINITY_SET - Interrupt affinity was set
291 * @irq_set_affinity: set the CPU affinity on SMP machines
293 * @irq_set_type: set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
456 * (a chained handler is automatically enabled and set to
465 void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set);
467 static inline void irq_set_status_flags(unsigned int irq, unsigned long set) argument
469 irq_modify_status(irq, 0, set);
721 unsigned int set);
724 unsigned int clr, unsigned int set);
[all...]
H A Dkvm_host.h197 int (*set)(struct kvm_kernel_irq_routing_entry *e, member in struct:kvm_kernel_irq_routing_entry
H A Dfb.h202 #define FB_ACTIVATE_NOW 0 /* set values immediately (or vbl)*/
204 #define FB_ACTIVATE_TEST 2 /* don't set, round up impossible */
392 __u16 set; /* what to set */ member in struct:fb_cursor
510 __u16 set; /* what to set */ member in struct:fb_cursor_user
540 /* CONSOLE-SPECIFIC: set console to framebuffer mapping */
584 #define FB_PIXMAP_SYNC 256 /* set if GPU can DMA */
597 /* if 0, will be set to 0xffffffff (all)*/
646 /* set th
[all...]
H A Dide.h225 ide_started, /* a drive operation was started, handler was set */
318 /* set when an error is considered normal - no retry (ide-tape) */
445 /* id read from device (synthetic if not set) */
515 u8 init_speed; /* transfer rate set at boot */
516 u8 current_speed; /* current transfer rate set */
517 u8 desired_speed; /* desired transfer rate set */
819 int (*set)(ide_drive_t *, int); member in struct:ide_devset
826 .set = _set, \
978 * step have been set to ide_power_state_completed.
988 * set t
[all...]
H A Dnl80211.h119 * @NL80211_CMD_SET_WIPHY: set wiphy parameters, needs %NL80211_ATTR_WIPHY or
120 * %NL80211_ATTR_IFINDEX; can be used to set %NL80211_ATTR_WIPHY_NAME,
205 * @NL80211_CMD_GET_REG: ask the wireless core to send us its currently set
209 * domain structure which consists of %NL80211_ATTR_REG_ALPHA set to our
211 * NL80211_ATTR_REG_RULE_FLAGS, and a set of regulatory rules. Each
212 * regulatory rule is a nested set of attributes given by
217 * @NL80211_CMD_REQ_SET_REG: ask the wireless core to set the regulatory domain
285 * set (%NL80211_ATTR_REG_TYPE), if the type of regulatory domain is
292 * if you are world roaming (regulatory domain set to world or if your
417 * and @NL80211_ATTR_TX_RATES the set o
1599 __u32 set; member in struct:nl80211_sta_flag_update
[all...]
H A Dsysctl.h13 ** any numbers within any one set of values. If you have to
172 VM_PAGE_CLUSTER=10, /* int: set number of pages to swap together */
969 * Register a set of sysctl names by calling register_sysctl_table
972 * set up by the registration and need not be initialised in advance.
1048 struct ctl_table_set *set; member in struct:ctl_table_header
1084 extern void retire_sysctl_set(struct ctl_table_set *set);
1088 struct ctl_table_set *set,
1091 struct ctl_table_set *set,
/include/linux/bcma/
H A Dbcma.h270 static inline void bcma_set32(struct bcma_device *cc, u16 offset, u32 set) argument
272 bcma_write32(cc, offset, bcma_read32(cc, offset) | set);
275 u16 offset, u32 mask, u32 set)
277 bcma_write32(cc, offset, (bcma_read32(cc, offset) & mask) | set);
283 static inline void bcma_set16(struct bcma_device *cc, u16 offset, u16 set) argument
285 bcma_write16(cc, offset, bcma_read16(cc, offset) | set);
288 u16 offset, u16 mask, u16 set)
290 bcma_write16(cc, offset, (bcma_read16(cc, offset) & mask) | set);
274 bcma_maskset32(struct bcma_device *cc, u16 offset, u32 mask, u32 set) argument
287 bcma_maskset16(struct bcma_device *cc, u16 offset, u16 mask, u16 set) argument
/include/linux/netfilter/ipset/
H A Dip_set_ahash.h23 * are serialized by the nfnl mutex. During resizing the set is
73 /* Book-keeping of the prefixes added to the set */
75 u8 cidr; /* the different cidr values in the set */
186 /* Destroy the hashtable part of the set */
203 /* Calculate the actual memory size of the set data */
222 /* Flush a hash type of set: destroy all elements */
224 ip_set_hash_flush(struct ip_set *set) argument
226 struct ip_set_hash *h = set->data;
241 * SET_HOST_MASK(set->family));
246 /* Destroy a hash type of set */
248 ip_set_hash_destroy(struct ip_set *set) argument
377 type_pf_resize(struct ip_set *set, bool retried) argument
440 type_pf_add(struct ip_set *set, void *value, u32 timeout, u32 flags) argument
493 type_pf_del(struct ip_set *set, void *value, u32 timeout, u32 flags) argument
541 type_pf_test_cidrs(struct ip_set *set, struct type_pf_elem *d, u32 timeout) argument
568 type_pf_test(struct ip_set *set, void *value, u32 timeout, u32 flags) argument
597 type_pf_head(struct ip_set *set, struct sk_buff *skb) argument
633 type_pf_list(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) argument
825 type_pf_tresize(struct ip_set *set, bool retried) argument
890 type_pf_tadd(struct ip_set *set, void *value, u32 timeout, u32 flags) argument
961 type_pf_tdel(struct ip_set *set, void *value, u32 timeout, u32 flags) argument
1008 type_pf_ttest_cidrs(struct ip_set *set, struct type_pf_elem *d, u32 timeout) argument
1042 type_pf_ttest(struct ip_set *set, void *value, u32 timeout, u32 flags) argument
1067 type_pf_tlist(const struct ip_set *set, struct sk_buff *skb, struct netlink_callback *cb) argument
1142 struct ip_set *set = (struct ip_set *) ul_set; local
1155 type_pf_gc_init(struct ip_set *set) argument
[all...]
H A Dip_set.h19 /* The max length of strings including NUL: set and type identifiers */
26 IPSET_CMD_CREATE, /* 2: Create a new (empty) set */
27 IPSET_CMD_DESTROY, /* 3: Destroy a (empty) set */
28 IPSET_CMD_FLUSH, /* 4: Remove all elements from a set */
29 IPSET_CMD_RENAME, /* 5: Rename a set */
33 IPSET_CMD_ADD, /* 9: Add an element to a set */
34 IPSET_CMD_DEL, /* 10: Delete an element from a set */
35 IPSET_CMD_TEST, /* 11: Test an element in a set */
36 IPSET_CMD_HEADER, /* 12: Get set header data only */
37 IPSET_CMD_TYPE, /* 13: Get set typ
477 union ip_set_name_index set; member in struct:ip_set_req_get_set
[all...]
/include/linux/usb/
H A Daudio.h551 int (*set)(struct usb_audio_control *con, u8 cmd, int value); member in struct:usb_audio_control
/include/linux/dvb/
H A Dfrontend.h279 /* Basic enumeration set for querying unlimited capabilities */
370 __u32 set:1; /* Either a set or get property */ member in struct:dtv_cmds_h
403 * When set, this flag will disable any zigzagging or other "normal" tuning
/include/video/
H A Dnewport.h286 struct newport_rexregs set; member in struct:newport_regs
389 regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | NPORT_DMODE_W3 |
391 regs->set.dcbdata0.byword = (vc2ireg << 24) | (val << 8);
397 regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | NPORT_DMODE_W1 |
399 regs->set.dcbdata0.bybytes.b3 = vc2ireg;
400 regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_IREG | NPORT_DMODE_W2 |
402 return regs->set.dcbdata0.byshort.s1;
431 regs->set.dcbmode = (NPORT_DMODE_ACMALL | NCMAP_PROTOCOL |
434 regs->set.dcbdata0.byshort.s1 = addr;
435 regs->set
[all...]

Completed in 5808 milliseconds