Searched refs:me (Results 1 - 25 of 1577) 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/include/asm/
H A Dpda.h15 extern struct foo me;
17 #define read_pda(me) (&me)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/um/include/asm/
H A Dpda.h15 extern struct foo me;
17 #define read_pda(me) (&me)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/sim/common/
H A Dhw-alloc.h34 #define HW_ZALLOC(me,type) (type*) hw_zalloc (me, sizeof (type))
35 #define HW_MALLOC(me,type) (type*) hw_malloc (me, sizeof (type))
36 #define HW_NZALLOC(ME,TYPE,N) (TYPE*) hw_zalloc (me, sizeof (TYPE) * (N))
38 extern void *hw_zalloc (struct hw *me, unsigned long size);
39 extern void *hw_malloc (struct hw *me, unsigned long size);
41 extern void hw_free (struct hw *me, void *);
46 extern char *hw_strdup (struct hw *me, const char *str);
H A Ddv-core.c49 dv_core_attach_address_callback (struct hw *me, argument
56 HW_TRACE ((me, "attach - level=%d, space=%d, addr=0x%lx, nr_bytes=%ld, client=%s",
61 sim_core_attach (hw_system (me),
74 dv_core_dma_read_buffer_callback (struct hw *me, argument
80 return sim_core_read_buffer (hw_system (me),
90 dv_core_dma_write_buffer_callback (struct hw *me, argument
97 return sim_core_write_buffer (hw_system (me),
107 dv_core_finish (struct hw *me) argument
109 set_hw_attach_address (me, dv_core_attach_address_callback);
110 set_hw_dma_write_buffer (me, dv_core_dma_write_buffer_callbac
[all...]
H A Dhw-events.c31 struct hw *me; member in struct:hw_event
43 create_hw_event_data (struct hw *me) argument
45 if (me->events_of_hw != NULL)
46 hw_abort (me, "stray events");
51 delete_hw_event_data (struct hw *me) argument
54 while (me->events_of_hw)
55 hw_event_queue_deschedule (me, &me->events_of_hw->event);
67 struct hw *me = entry->event.me; local
83 hw_event_queue_schedule(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data) argument
97 hw_event_queue_schedule_tracef(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data, const char *fmt, ...) argument
113 hw_event_queue_schedule_vtracef(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data, const char *fmt, va_list ap) argument
138 hw_event_queue_deschedule(struct hw *me, struct hw_event *event_to_remove) argument
163 hw_event_queue_time(struct hw *me) argument
170 hw_event_remain_time(struct hw *me, struct hw_event *event) argument
187 test_handler(struct hw *me, void *data) argument
202 struct hw *me = ZALLOC (struct hw); local
[all...]
H A Dhw-device.c33 hw_unit_address (struct hw *me) argument
35 return &me->unit_address_of_hw;
42 hw_ioctl (struct hw *me, argument
49 status = me->to_ioctl (me, request, ap);
55 hw_strdup (struct hw *me, const char *str) argument
59 char *dup = hw_zalloc (me, strlen (str) + 1);
H A Dhw-events.h28 typedef void (hw_event_callback) (struct hw *me, void *data);
31 (struct hw *me,
37 (struct hw *me,
45 (struct hw *me,
54 (struct hw *me,
58 (struct hw *me);
62 (struct hw *me, struct hw_event *event);
H A Dhw-alloc.c36 create_hw_alloc_data (struct hw *me) argument
42 delete_hw_alloc_data (struct hw *me) argument
44 while (me->alloc_of_hw != NULL)
46 hw_free (me, me->alloc_of_hw->alloc);
53 hw_zalloc (struct hw *me, unsigned long size) argument
58 memory->next = me->alloc_of_hw;
59 me->alloc_of_hw = memory;
64 hw_malloc (struct hw *me, unsigned long size) argument
69 memory->next = me
75 hw_free(struct hw *me, void *alloc) argument
[all...]
H A Dhw-ports.h36 (struct hw *me,
52 (struct hw *me,
75 (struct hw *me,
82 (struct hw *me,
91 (struct hw *me,
98 (struct hw *me,
116 (struct hw *me,
121 (struct hw *me,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/sim/common/
H A Dhw-alloc.h34 #define HW_ZALLOC(me,type) (type*) hw_zalloc (me, sizeof (type))
35 #define HW_MALLOC(me,type) (type*) hw_malloc (me, sizeof (type))
36 #define HW_NZALLOC(ME,TYPE,N) (TYPE*) hw_zalloc (me, sizeof (TYPE) * (N))
38 extern void *hw_zalloc (struct hw *me, unsigned long size);
39 extern void *hw_malloc (struct hw *me, unsigned long size);
41 extern void hw_free (struct hw *me, void *);
46 extern char *hw_strdup (struct hw *me, const char *str);
H A Ddv-core.c49 dv_core_attach_address_callback (struct hw *me, argument
56 HW_TRACE ((me, "attach - level=%d, space=%d, addr=0x%lx, nr_bytes=%ld, client=%s",
61 sim_core_attach (hw_system (me),
74 dv_core_dma_read_buffer_callback (struct hw *me, argument
80 return sim_core_read_buffer (hw_system (me),
90 dv_core_dma_write_buffer_callback (struct hw *me, argument
97 return sim_core_write_buffer (hw_system (me),
107 dv_core_finish (struct hw *me) argument
109 set_hw_attach_address (me, dv_core_attach_address_callback);
110 set_hw_dma_write_buffer (me, dv_core_dma_write_buffer_callbac
[all...]
H A Dhw-events.c31 struct hw *me; member in struct:hw_event
43 create_hw_event_data (struct hw *me) argument
45 if (me->events_of_hw != NULL)
46 hw_abort (me, "stray events");
51 delete_hw_event_data (struct hw *me) argument
54 while (me->events_of_hw)
55 hw_event_queue_deschedule (me, &me->events_of_hw->event);
67 struct hw *me = entry->event.me; local
83 hw_event_queue_schedule(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data) argument
97 hw_event_queue_schedule_tracef(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data, const char *fmt, ...) argument
113 hw_event_queue_schedule_vtracef(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data, const char *fmt, va_list ap) argument
138 hw_event_queue_deschedule(struct hw *me, struct hw_event *event_to_remove) argument
163 hw_event_queue_time(struct hw *me) argument
170 hw_event_remain_time(struct hw *me, struct hw_event *event) argument
187 test_handler(struct hw *me, void *data) argument
202 struct hw *me = ZALLOC (struct hw); local
[all...]
H A Dhw-device.c33 hw_unit_address (struct hw *me) argument
35 return &me->unit_address_of_hw;
42 hw_ioctl (struct hw *me, argument
49 status = me->to_ioctl (me, request, ap);
55 hw_strdup (struct hw *me, const char *str) argument
59 char *dup = hw_zalloc (me, strlen (str) + 1);
H A Dhw-events.h28 typedef void (hw_event_callback) (struct hw *me, void *data);
31 (struct hw *me,
37 (struct hw *me,
45 (struct hw *me,
54 (struct hw *me,
58 (struct hw *me);
62 (struct hw *me, struct hw_event *event);
H A Dhw-alloc.c36 create_hw_alloc_data (struct hw *me) argument
42 delete_hw_alloc_data (struct hw *me) argument
44 while (me->alloc_of_hw != NULL)
46 hw_free (me, me->alloc_of_hw->alloc);
53 hw_zalloc (struct hw *me, unsigned long size) argument
58 memory->next = me->alloc_of_hw;
59 me->alloc_of_hw = memory;
64 hw_malloc (struct hw *me, unsigned long size) argument
69 memory->next = me
75 hw_free(struct hw *me, void *alloc) argument
[all...]
H A Dhw-ports.h36 (struct hw *me,
52 (struct hw *me,
75 (struct hw *me,
82 (struct hw *me,
91 (struct hw *me,
98 (struct hw *me,
116 (struct hw *me,
121 (struct hw *me,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/common/
H A Dhw-alloc.h34 #define HW_ZALLOC(me,type) (type*) hw_zalloc (me, sizeof (type))
35 #define HW_MALLOC(me,type) (type*) hw_malloc (me, sizeof (type))
36 #define HW_NZALLOC(ME,TYPE,N) (TYPE*) hw_zalloc (me, sizeof (TYPE) * (N))
38 extern void *hw_zalloc (struct hw *me, unsigned long size);
39 extern void *hw_malloc (struct hw *me, unsigned long size);
41 extern void hw_free (struct hw *me, void *);
46 extern char *hw_strdup (struct hw *me, const char *str);
H A Ddv-core.c49 dv_core_attach_address_callback (struct hw *me, argument
56 HW_TRACE ((me, "attach - level=%d, space=%d, addr=0x%lx, nr_bytes=%ld, client=%s",
61 sim_core_attach (hw_system (me),
74 dv_core_dma_read_buffer_callback (struct hw *me, argument
80 return sim_core_read_buffer (hw_system (me),
90 dv_core_dma_write_buffer_callback (struct hw *me, argument
97 return sim_core_write_buffer (hw_system (me),
107 dv_core_finish (struct hw *me) argument
109 set_hw_attach_address (me, dv_core_attach_address_callback);
110 set_hw_dma_write_buffer (me, dv_core_dma_write_buffer_callbac
[all...]
H A Dhw-events.c31 struct hw *me; member in struct:hw_event
43 create_hw_event_data (struct hw *me) argument
45 if (me->events_of_hw != NULL)
46 hw_abort (me, "stray events");
51 delete_hw_event_data (struct hw *me) argument
54 while (me->events_of_hw)
55 hw_event_queue_deschedule (me, &me->events_of_hw->event);
67 struct hw *me = entry->event.me; local
83 hw_event_queue_schedule(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data) argument
97 hw_event_queue_schedule_tracef(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data, const char *fmt, ...) argument
113 hw_event_queue_schedule_vtracef(struct hw *me, signed64 delta_time, hw_event_callback *callback, void *data, const char *fmt, va_list ap) argument
138 hw_event_queue_deschedule(struct hw *me, struct hw_event *event_to_remove) argument
163 hw_event_queue_time(struct hw *me) argument
170 hw_event_remain_time(struct hw *me, struct hw_event *event) argument
187 test_handler(struct hw *me, void *data) argument
202 struct hw *me = ZALLOC (struct hw); local
[all...]
H A Dhw-device.c33 hw_unit_address (struct hw *me) argument
35 return &me->unit_address_of_hw;
42 hw_ioctl (struct hw *me, argument
49 status = me->to_ioctl (me, request, ap);
55 hw_strdup (struct hw *me, const char *str) argument
59 char *dup = hw_zalloc (me, strlen (str) + 1);
H A Dhw-events.h28 typedef void (hw_event_callback) (struct hw *me, void *data);
31 (struct hw *me,
37 (struct hw *me,
45 (struct hw *me,
54 (struct hw *me,
58 (struct hw *me);
62 (struct hw *me, struct hw_event *event);
H A Dhw-alloc.c36 create_hw_alloc_data (struct hw *me) argument
42 delete_hw_alloc_data (struct hw *me) argument
44 while (me->alloc_of_hw != NULL)
46 hw_free (me, me->alloc_of_hw->alloc);
53 hw_zalloc (struct hw *me, unsigned long size) argument
58 memory->next = me->alloc_of_hw;
59 me->alloc_of_hw = memory;
64 hw_malloc (struct hw *me, unsigned long size) argument
69 memory->next = me
75 hw_free(struct hw *me, void *alloc) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/sim/mn10300/
H A Ddv-mn103ser.c134 attach_mn103ser_regs (struct hw *me, argument
142 if (hw_find_property (me, "reg") == NULL)
143 hw_abort (me, "Missing \"reg\" property");
145 if (!hw_find_reg_array_property (me, "reg", 0, &reg))
146 hw_abort (me, "\"reg\" property must contain three addr/size entries");
147 hw_unit_address_to_attach_address (hw_parent (me),
151 me); local
153 hw_unit_size_to_attach_size (hw_parent (me),
155 &attach_size, me); local
157 hw_attach_address (hw_parent (me),
160 me); local
164 mn103ser_finish(struct hw *me) argument
205 decode_addr(struct hw *me, struct mn103ser *serial, unsigned_word address) argument
238 do_polling_event(struct hw *me, void *data) argument
288 read_control_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
308 read_intmode_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
327 read_txb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
346 read_rxb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
367 read_status_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
443 read_serial2_timer_reg(struct hw *me, struct mn103ser *serial, void *dest, unsigned nr_bytes) argument
460 mn103ser_io_read_buffer(struct hw *me, void *dest, int space, unsigned_word base, unsigned nr_bytes) argument
532 write_control_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
561 write_intmode_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
592 write_txb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
623 write_serial2_timer_reg(struct hw *me, struct mn103ser *serial, const void *source, unsigned nr_bytes) argument
640 mn103ser_io_write_buffer(struct hw *me, const void *source, int space, unsigned_word base, unsigned nr_bytes) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/sim/mn10300/
H A Ddv-mn103ser.c134 attach_mn103ser_regs (struct hw *me, argument
142 if (hw_find_property (me, "reg") == NULL)
143 hw_abort (me, "Missing \"reg\" property");
145 if (!hw_find_reg_array_property (me, "reg", 0, &reg))
146 hw_abort (me, "\"reg\" property must contain three addr/size entries");
147 hw_unit_address_to_attach_address (hw_parent (me),
151 me); local
153 hw_unit_size_to_attach_size (hw_parent (me),
155 &attach_size, me); local
157 hw_attach_address (hw_parent (me),
160 me); local
164 mn103ser_finish(struct hw *me) argument
205 decode_addr(struct hw *me, struct mn103ser *serial, unsigned_word address) argument
238 do_polling_event(struct hw *me, void *data) argument
288 read_control_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
308 read_intmode_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
327 read_txb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
346 read_rxb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
367 read_status_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
443 read_serial2_timer_reg(struct hw *me, struct mn103ser *serial, void *dest, unsigned nr_bytes) argument
460 mn103ser_io_read_buffer(struct hw *me, void *dest, int space, unsigned_word base, unsigned nr_bytes) argument
532 write_control_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
561 write_intmode_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
592 write_txb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
623 write_serial2_timer_reg(struct hw *me, struct mn103ser *serial, const void *source, unsigned nr_bytes) argument
640 mn103ser_io_write_buffer(struct hw *me, const void *source, int space, unsigned_word base, unsigned nr_bytes) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/mn10300/
H A Ddv-mn103ser.c134 attach_mn103ser_regs (struct hw *me, argument
142 if (hw_find_property (me, "reg") == NULL)
143 hw_abort (me, "Missing \"reg\" property");
145 if (!hw_find_reg_array_property (me, "reg", 0, &reg))
146 hw_abort (me, "\"reg\" property must contain three addr/size entries");
147 hw_unit_address_to_attach_address (hw_parent (me),
151 me); local
153 hw_unit_size_to_attach_size (hw_parent (me),
155 &attach_size, me); local
157 hw_attach_address (hw_parent (me),
160 me); local
164 mn103ser_finish(struct hw *me) argument
205 decode_addr(struct hw *me, struct mn103ser *serial, unsigned_word address) argument
238 do_polling_event(struct hw *me, void *data) argument
288 read_control_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
308 read_intmode_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
327 read_txb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
346 read_rxb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
367 read_status_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, void *dest, unsigned nr_bytes) argument
443 read_serial2_timer_reg(struct hw *me, struct mn103ser *serial, void *dest, unsigned nr_bytes) argument
460 mn103ser_io_read_buffer(struct hw *me, void *dest, int space, unsigned_word base, unsigned nr_bytes) argument
532 write_control_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
561 write_intmode_reg(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
592 write_txb(struct hw *me, struct mn103ser *serial, unsigned_word serial_reg, const void *source, unsigned nr_bytes) argument
623 write_serial2_timer_reg(struct hw *me, struct mn103ser *serial, const void *source, unsigned nr_bytes) argument
640 mn103ser_io_write_buffer(struct hw *me, const void *source, int space, unsigned_word base, unsigned nr_bytes) argument
[all...]

Completed in 245 milliseconds

1234567891011>>