Searched refs:fi (Results 1 - 25 of 342) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/um/sys-i386/shared/sysdep/
H A Dsigcontext.h13 #define GET_FAULTINFO_FROM_SC(fi, sc) \
15 (fi).cr2 = SC_CR2(sc); \
16 (fi).error_code = SC_ERR(sc); \
17 (fi).trap_no = SC_TRAPNO(sc); \
21 #define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14)
24 #define SEGV_MAYBE_FIXABLE(fi) ((fi)->trap_no == 0 && ptrace_faultinfo)
H A Dfaultinfo.h24 #define FAULT_WRITE(fi) ((fi).error_code & 2)
25 #define FAULT_ADDRESS(fi) ((fi).cr2)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/um/sys-i386/shared/sysdep/
H A Dsigcontext.h13 #define GET_FAULTINFO_FROM_SC(fi, sc) \
15 (fi).cr2 = SC_CR2(sc); \
16 (fi).error_code = SC_ERR(sc); \
17 (fi).trap_no = SC_TRAPNO(sc); \
21 #define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14)
24 #define SEGV_MAYBE_FIXABLE(fi) ((fi)->trap_no == 0 && ptrace_faultinfo)
H A Dfaultinfo.h24 #define FAULT_WRITE(fi) ((fi).error_code & 2)
25 #define FAULT_ADDRESS(fi) ((fi).cr2)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/um/sys-x86_64/shared/sysdep/
H A Dsigcontext.h14 #define GET_FAULTINFO_FROM_SC(fi, sc) \
16 (fi).cr2 = SC_CR2(sc); \
17 (fi).error_code = SC_ERR(sc); \
18 (fi).trap_no = SC_TRAPNO(sc); \
22 #define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14)
25 #define SEGV_MAYBE_FIXABLE(fi) 0
H A Dfaultinfo.h24 #define FAULT_WRITE(fi) ((fi).error_code & 2)
25 #define FAULT_ADDRESS(fi) ((fi).cr2)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/um/sys-x86_64/shared/sysdep/
H A Dsigcontext.h14 #define GET_FAULTINFO_FROM_SC(fi, sc) \
16 (fi).cr2 = SC_CR2(sc); \
17 (fi).error_code = SC_ERR(sc); \
18 (fi).trap_no = SC_TRAPNO(sc); \
22 #define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14)
25 #define SEGV_MAYBE_FIXABLE(fi) 0
H A Dfaultinfo.h24 #define FAULT_WRITE(fi) ((fi).error_code & 2)
25 #define FAULT_ADDRESS(fi) ((fi).cr2)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/isdn/hisax/
H A Dfsm.c52 FsmEvent(struct FsmInst *fi, int event, void *arg) argument
56 if ((fi->state>=fi->fsm->state_count) || (event >= fi->fsm->event_count)) {
58 (long)fi->state,(long)fi->fsm->state_count,event,(long)fi->fsm->event_count);
61 r = fi->fsm->jumpmatrix[fi->fsm->state_count * event + fi
79 FsmChangeState(struct FsmInst *fi, int newstate) argument
98 FsmInitTimer(struct FsmInst *fi, struct FsmTimer *ft) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/isdn/hisax/
H A Dfsm.c52 FsmEvent(struct FsmInst *fi, int event, void *arg) argument
56 if ((fi->state>=fi->fsm->state_count) || (event >= fi->fsm->event_count)) {
58 (long)fi->state,(long)fi->fsm->state_count,event,(long)fi->fsm->event_count);
61 r = fi->fsm->jumpmatrix[fi->fsm->state_count * event + fi
79 FsmChangeState(struct FsmInst *fi, int newstate) argument
98 FsmInitTimer(struct FsmInst *fi, struct FsmTimer *ft) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/s390/net/
H A Dfsm.h90 fsm_instance *fi; member in struct:__anon17932
117 * @param fi Pointer to an FSM, previously created with init_fsm.
119 extern void kfree_fsm(fsm_instance *fi);
123 fsm_print_history(fsm_instance *fi);
126 fsm_record_history(fsm_instance *fi, int state, int event);
134 * @param fi Pointer to FSM which should receive the event.
143 fsm_event(fsm_instance *fi, int event, void *arg) argument
146 int state = atomic_read(&fi->state);
148 if ((state >= fi->f->nr_states) ||
149 (event >= fi
191 fsm_newstate(fsm_instance *fi, int newstate) argument
212 fsm_getstate(fsm_instance *fi) argument
[all...]
H A Dfsm.c87 fsm_print_history(fsm_instance *fi) argument
92 if (fi->history_size >= FSM_HISTORY_SIZE)
93 idx = fi->history_index;
95 printk(KERN_DEBUG "fsm(%s): History:\n", fi->name);
96 for (i = 0; i < fi->history_size; i++) {
97 int e = fi->history[idx].event;
98 int s = fi->history[idx++].state;
102 fi->f->state_names[s]);
105 fi->f->state_names[s],
106 fi
112 fsm_record_history(fsm_instance *fi, int state, int event) argument
123 fsm_getstate_str(fsm_instance *fi) argument
142 fsm_settimer(fsm_instance *fi, fsm_timer *this) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/s390/net/
H A Dfsm.h90 fsm_instance *fi; member in struct:__anon29625
117 * @param fi Pointer to an FSM, previously created with init_fsm.
119 extern void kfree_fsm(fsm_instance *fi);
123 fsm_print_history(fsm_instance *fi);
126 fsm_record_history(fsm_instance *fi, int state, int event);
134 * @param fi Pointer to FSM which should receive the event.
143 fsm_event(fsm_instance *fi, int event, void *arg) argument
146 int state = atomic_read(&fi->state);
148 if ((state >= fi->f->nr_states) ||
149 (event >= fi
191 fsm_newstate(fsm_instance *fi, int newstate) argument
212 fsm_getstate(fsm_instance *fi) argument
[all...]
H A Dfsm.c87 fsm_print_history(fsm_instance *fi) argument
92 if (fi->history_size >= FSM_HISTORY_SIZE)
93 idx = fi->history_index;
95 printk(KERN_DEBUG "fsm(%s): History:\n", fi->name);
96 for (i = 0; i < fi->history_size; i++) {
97 int e = fi->history[idx].event;
98 int s = fi->history[idx++].state;
102 fi->f->state_names[s]);
105 fi->f->state_names[s],
106 fi
112 fsm_record_history(fsm_instance *fi, int state, int event) argument
123 fsm_getstate_str(fsm_instance *fi) argument
142 fsm_settimer(fsm_instance *fi, fsm_timer *this) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/isdn/mISDN/
H A Dfsm.c59 mISDN_FsmEvent(struct FsmInst *fi, int event, void *arg) argument
63 if ((fi->state >= fi->fsm->state_count) ||
64 (event >= fi->fsm->event_count)) {
67 (long)fi->state, (long)fi->fsm->state_count, event,
68 (long)fi->fsm->event_count);
71 r = fi->fsm->jumpmatrix[fi->fsm->state_count * event + fi
90 mISDN_FsmChangeState(struct FsmInst *fi, int newstate) argument
110 mISDN_FsmInitTimer(struct FsmInst *fi, struct FsmTimer *ft) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/isdn/mISDN/
H A Dfsm.c59 mISDN_FsmEvent(struct FsmInst *fi, int event, void *arg) argument
63 if ((fi->state >= fi->fsm->state_count) ||
64 (event >= fi->fsm->event_count)) {
67 (long)fi->state, (long)fi->fsm->state_count, event,
68 (long)fi->fsm->event_count);
71 r = fi->fsm->jumpmatrix[fi->fsm->state_count * event + fi
90 mISDN_FsmChangeState(struct FsmInst *fi, int newstate) argument
110 mISDN_FsmInitTimer(struct FsmInst *fi, struct FsmTimer *ft) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/ipv4/
H A Dfib_semantics.c63 #define for_nexthops(fi) { int nhsel; const struct fib_nh * nh; \
64 for (nhsel=0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
66 #define change_nexthops(fi) { int nhsel; struct fib_nh *nexthop_nh; \
67 for (nhsel=0, nexthop_nh = (struct fib_nh *)((fi)->fib_nh); nhsel < (fi)->fib_nhs; nexthop_nh++, nhsel++)
73 #define for_nexthops(fi) { int nhsel = 0; const struct fib_nh * nh = (fi)->fib_nh; \
76 #define change_nexthops(fi) { int nhsel = 0; struct fib_nh *nexthop_nh = (struct fib_nh *)((fi)
142 free_fib_info(struct fib_info *fi) argument
158 fib_release_info(struct fib_info *fi) argument
176 nh_comp(const struct fib_info *fi, const struct fib_info *ofi) argument
206 fib_info_hashfn(const struct fib_info *fi) argument
225 struct fib_info *fi; local
278 fib_nlmsg_size(struct fib_info *fi) argument
352 fib_detect_death(struct fib_info *fi, int order, struct fib_info **last_resort, int *last_idx, int dflt) argument
390 fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, int remaining, struct fib_config *cfg) argument
424 fib_nh_match(struct fib_config *cfg, struct fib_info *fi) argument
522 fib_check_nh(struct fib_config *cfg, struct fib_info *fi, struct fib_nh *nh) argument
644 struct fib_info *fi; local
662 struct fib_info *fi; local
687 struct fib_info *fi = NULL; local
886 struct fib_info *fi = fa->fa_info; local
943 fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event, u32 tb_id, u8 type, u8 scope, __be32 dst, int dst_len, u8 tos, struct fib_info *fi, unsigned int flags) argument
1042 struct fib_info *fi; local
1072 struct fib_info *fi = nh->nh_parent; local
1135 struct fib_info *fi = nh->nh_parent; local
1178 struct fib_info *fi = res->fi; local
[all...]
H A Dfib_lookup.h28 extern int fib_nh_match(struct fib_config *cfg, struct fib_info *fi);
31 int dst_len, u8 tos, struct fib_info *fi,
38 extern int fib_detect_death(struct fib_info *fi, int order,
43 struct fib_info *fi)
45 if (res->fi != NULL)
46 fib_info_put(res->fi);
47 res->fi = fi;
48 if (fi != NULL)
49 atomic_inc(&fi
42 fib_result_assign(struct fib_result *res, struct fib_info *fi) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/ipv4/
H A Dfib_semantics.c63 #define for_nexthops(fi) { int nhsel; const struct fib_nh * nh; \
64 for (nhsel=0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
66 #define change_nexthops(fi) { int nhsel; struct fib_nh *nexthop_nh; \
67 for (nhsel=0, nexthop_nh = (struct fib_nh *)((fi)->fib_nh); nhsel < (fi)->fib_nhs; nexthop_nh++, nhsel++)
73 #define for_nexthops(fi) { int nhsel = 0; const struct fib_nh * nh = (fi)->fib_nh; \
76 #define change_nexthops(fi) { int nhsel = 0; struct fib_nh *nexthop_nh = (struct fib_nh *)((fi)
142 free_fib_info(struct fib_info *fi) argument
158 fib_release_info(struct fib_info *fi) argument
176 nh_comp(const struct fib_info *fi, const struct fib_info *ofi) argument
206 fib_info_hashfn(const struct fib_info *fi) argument
225 struct fib_info *fi; local
278 fib_nlmsg_size(struct fib_info *fi) argument
352 fib_detect_death(struct fib_info *fi, int order, struct fib_info **last_resort, int *last_idx, int dflt) argument
390 fib_get_nhs(struct fib_info *fi, struct rtnexthop *rtnh, int remaining, struct fib_config *cfg) argument
424 fib_nh_match(struct fib_config *cfg, struct fib_info *fi) argument
522 fib_check_nh(struct fib_config *cfg, struct fib_info *fi, struct fib_nh *nh) argument
644 struct fib_info *fi; local
662 struct fib_info *fi; local
687 struct fib_info *fi = NULL; local
886 struct fib_info *fi = fa->fa_info; local
943 fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event, u32 tb_id, u8 type, u8 scope, __be32 dst, int dst_len, u8 tos, struct fib_info *fi, unsigned int flags) argument
1042 struct fib_info *fi; local
1072 struct fib_info *fi = nh->nh_parent; local
1135 struct fib_info *fi = nh->nh_parent; local
1178 struct fib_info *fi = res->fi; local
[all...]
H A Dfib_lookup.h28 extern int fib_nh_match(struct fib_config *cfg, struct fib_info *fi);
31 int dst_len, u8 tos, struct fib_info *fi,
38 extern int fib_detect_death(struct fib_info *fi, int order,
43 struct fib_info *fi)
45 if (res->fi != NULL)
46 fib_info_put(res->fi);
47 res->fi = fi;
48 if (fi != NULL)
49 atomic_inc(&fi
42 fib_result_assign(struct fib_result *res, struct fib_info *fi) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/xen/
H A Dfeatures.c23 struct xen_feature_info fi; local
27 fi.submap_idx = i;
28 if (HYPERVISOR_xen_version(XENVER_get_features, &fi) < 0)
31 xen_features[i * 32 + j] = !!(fi.submap & 1<<j);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/xen/
H A Dfeatures.c23 struct xen_feature_info fi; local
27 fi.submap_idx = i;
28 if (HYPERVISOR_xen_version(XENVER_get_features, &fi) < 0)
31 xen_features[i * 32 + j] = !!(fi.submap & 1<<j);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/mi/
H A Dmi-cmd-stack.c33 static void list_args_or_locals (int locals, int values, struct frame_info *fi);
47 struct frame_info *fi; local
65 /* Let's position fi on the frame at which to start the
68 for (i = 0, fi = get_current_frame ();
69 fi && i < frame_low;
70 i++, fi = get_prev_frame (fi));
72 if (fi == NULL)
80 fi && (i <= frame_high || frame_high == -1);
81 i++, fi
99 struct frame_info *fi; local
161 struct frame_info *fi; local
216 list_args_or_locals(int locals, int values, struct frame_info *fi) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/mi/
H A Dmi-cmd-stack.c33 static void list_args_or_locals (int locals, int values, struct frame_info *fi);
47 struct frame_info *fi; local
65 /* Let's position fi on the frame at which to start the
68 for (i = 0, fi = get_current_frame ();
69 fi && i < frame_low;
70 i++, fi = get_prev_frame (fi));
72 if (fi == NULL)
80 fi && (i <= frame_high || frame_high == -1);
81 i++, fi
99 struct frame_info *fi; local
161 struct frame_info *fi; local
216 list_args_or_locals(int locals, int values, struct frame_info *fi) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/mi/
H A Dmi-cmd-stack.c33 static void list_args_or_locals (int locals, int values, struct frame_info *fi);
47 struct frame_info *fi; local
65 /* Let's position fi on the frame at which to start the
68 for (i = 0, fi = get_current_frame ();
69 fi && i < frame_low;
70 i++, fi = get_prev_frame (fi));
72 if (fi == NULL)
80 fi && (i <= frame_high || frame_high == -1);
81 i++, fi
99 struct frame_info *fi; local
161 struct frame_info *fi; local
216 list_args_or_locals(int locals, int values, struct frame_info *fi) argument
[all...]

Completed in 157 milliseconds

1234567891011>>