Searched refs:self (Results 26 - 50 of 763) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dthread.c52 struct thread *self = zalloc(sizeof(*self)); local
54 if (self != NULL) {
55 map_groups__init(&self->mg);
56 self->pid = pid;
57 self->comm = malloc(32);
58 if (self->comm)
59 snprintf(self->comm, 32, ":%d", self->pid);
62 return self;
65 thread__delete(struct thread *self) argument
72 thread__set_comm(struct thread *self, const char *comm) argument
87 thread__comm_len(struct thread *self) argument
98 thread__fprintf(struct thread *self, FILE *fp) argument
104 perf_session__findnew(struct perf_session *self, pid_t pid) argument
143 thread__insert_map(struct thread *self, struct map *map) argument
149 thread__fork(struct thread *self, struct thread *parent) argument
168 perf_session__fprintf(struct perf_session *self, FILE *fp) argument
[all...]
H A Dstrlist.h19 void strlist__delete(struct strlist *self);
21 void strlist__remove(struct strlist *self, struct str_node *sn);
22 int strlist__load(struct strlist *self, const char *filename);
23 int strlist__add(struct strlist *self, const char *str);
25 struct str_node *strlist__entry(const struct strlist *self, unsigned int idx);
26 struct str_node *strlist__find(struct strlist *self, const char *entry);
28 static inline bool strlist__has_entry(struct strlist *self, const char *entry) argument
30 return strlist__find(self, entry) != NULL;
33 static inline bool strlist__empty(const struct strlist *self) argument
35 return self
38 strlist__nr_entries(const struct strlist *self) argument
44 strlist__first(struct strlist *self) argument
[all...]
H A Dstrlist.c15 struct str_node *self = malloc(sizeof(*self)); local
17 if (self != NULL) {
23 self->s = s;
26 return self;
29 free(self);
33 static void str_node__delete(struct str_node *self, bool dupstr) argument
36 free((void *)self->s);
37 free(self);
40 int strlist__add(struct strlist *self, cons argument
72 strlist__load(struct strlist *self, const char *filename) argument
99 strlist__remove(struct strlist *self, struct str_node *sn) argument
105 strlist__find(struct strlist *self, const char *entry) argument
129 strlist__parse_list_entry(struct strlist *self, const char *s) argument
137 strlist__parse_list(struct strlist *self, const char *s) argument
156 struct strlist *self = malloc(sizeof(*self)); local
172 strlist__delete(struct strlist *self) argument
188 strlist__entry(const struct strlist *self, unsigned int idx) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/irda/irlan/
H A Dirlan_client_event.c39 static int irlan_client_state_idle (struct irlan_cb *self, IRLAN_EVENT event,
41 static int irlan_client_state_query(struct irlan_cb *self, IRLAN_EVENT event,
43 static int irlan_client_state_conn (struct irlan_cb *self, IRLAN_EVENT event,
45 static int irlan_client_state_info (struct irlan_cb *self, IRLAN_EVENT event,
47 static int irlan_client_state_media(struct irlan_cb *self, IRLAN_EVENT event,
49 static int irlan_client_state_open (struct irlan_cb *self, IRLAN_EVENT event,
51 static int irlan_client_state_wait (struct irlan_cb *self, IRLAN_EVENT event,
53 static int irlan_client_state_arb (struct irlan_cb *self, IRLAN_EVENT event,
55 static int irlan_client_state_data (struct irlan_cb *self, IRLAN_EVENT event,
57 static int irlan_client_state_close(struct irlan_cb *self, IRLAN_EVEN
77 irlan_do_client_event(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
92 irlan_client_state_idle(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
136 irlan_client_state_query(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
189 irlan_client_state_conn(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
224 irlan_client_state_info(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
266 irlan_client_state_media(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
303 irlan_client_state_open(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
376 irlan_client_state_wait(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
405 irlan_client_state_arb(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
462 irlan_client_state_data(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
494 irlan_client_state_close(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
511 irlan_client_state_sync(struct irlan_cb *self, IRLAN_EVENT event, struct sk_buff *skb) argument
[all...]
H A Dirlan_event.c41 void irlan_next_client_state(struct irlan_cb *self, IRLAN_STATE state) argument
45 IRDA_ASSERT(self != NULL, return;);
46 IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
48 self->client.state = state;
51 void irlan_next_provider_state(struct irlan_cb *self, IRLAN_STATE state) argument
55 IRDA_ASSERT(self != NULL, return;);
56 IRDA_ASSERT(self->magic == IRLAN_MAGIC, return;);
58 self->provider.state = state;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/irda/
H A Dirlap.c60 extern void irlap_queue_xmit(struct irlap_cb *self, struct sk_buff *skb);
61 static void __irlap_close(struct irlap_cb *self);
62 static void irlap_init_qos_capabilities(struct irlap_cb *self,
114 struct irlap_cb *self; local
119 self = kzalloc(sizeof(struct irlap_cb), GFP_KERNEL);
120 if (self == NULL)
123 self->magic = LAP_MAGIC;
126 self->netdev = dev;
127 self->qos_dev = qos;
130 strlcpy(self
185 __irlap_close(struct irlap_cb *self) argument
213 irlap_close(struct irlap_cb *self) argument
246 irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb) argument
265 irlap_connect_response(struct irlap_cb *self, struct sk_buff *userdata) argument
279 irlap_connect_request(struct irlap_cb *self, __u32 daddr, struct qos_info *qos_user, int sniff) argument
307 irlap_connect_confirm(struct irlap_cb *self, struct sk_buff *skb) argument
324 irlap_data_indication(struct irlap_cb *self, struct sk_buff *skb, int unreliable) argument
340 irlap_data_request(struct irlap_cb *self, struct sk_buff *skb, int unreliable) argument
384 irlap_unitdata_request(struct irlap_cb *self, struct sk_buff *skb) argument
413 irlap_unitdata_indication(struct irlap_cb *self, struct sk_buff *skb) argument
433 irlap_disconnect_request(struct irlap_cb *self) argument
468 irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason) argument
501 irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery) argument
563 irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log) argument
594 irlap_discovery_indication(struct irlap_cb *self, discovery_t *discovery) argument
621 irlap_status_indication(struct irlap_cb *self, int quality_of_link) argument
640 irlap_reset_indication(struct irlap_cb *self) argument
693 irlap_update_nr_received(struct irlap_cb *self, int nr) argument
735 irlap_validate_ns_received(struct irlap_cb *self, int ns) argument
754 irlap_validate_nr_received(struct irlap_cb *self, int nr) argument
784 irlap_initiate_connection_state(struct irlap_cb *self) argument
811 irlap_wait_min_turn_around(struct irlap_cb *self, struct qos_info *qos) argument
840 irlap_flush_all_queues(struct irlap_cb *self) argument
865 irlap_change_speed(struct irlap_cb *self, __u32 speed, int now) argument
893 irlap_init_qos_capabilities(struct irlap_cb *self, struct qos_info *qos_user) argument
940 irlap_apply_default_connection_parameters(struct irlap_cb *self) argument
1003 irlap_apply_connection_parameters(struct irlap_cb *self, int now) argument
1101 struct irlap_cb *self; local
1134 const struct irlap_cb *self = v; local
[all...]
H A Diriap_event.c34 static void state_s_disconnect (struct iriap_cb *self, IRIAP_EVENT event,
36 static void state_s_connecting (struct iriap_cb *self, IRIAP_EVENT event,
38 static void state_s_call (struct iriap_cb *self, IRIAP_EVENT event,
41 static void state_s_make_call (struct iriap_cb *self, IRIAP_EVENT event,
43 static void state_s_calling (struct iriap_cb *self, IRIAP_EVENT event,
45 static void state_s_outstanding (struct iriap_cb *self, IRIAP_EVENT event,
47 static void state_s_replying (struct iriap_cb *self, IRIAP_EVENT event,
49 static void state_s_wait_for_call(struct iriap_cb *self, IRIAP_EVENT event,
51 static void state_s_wait_active (struct iriap_cb *self, IRIAP_EVENT event,
54 static void state_r_disconnect (struct iriap_cb *self, IRIAP_EVEN
96 iriap_next_client_state(struct iriap_cb *self, IRIAP_STATE state) argument
104 iriap_next_call_state(struct iriap_cb *self, IRIAP_STATE state) argument
112 iriap_next_server_state(struct iriap_cb *self, IRIAP_STATE state) argument
120 iriap_next_r_connect_state(struct iriap_cb *self, IRIAP_STATE state) argument
128 iriap_do_client_event(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
137 iriap_do_call_event(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
146 iriap_do_server_event(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
155 iriap_do_r_connect_event(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
171 state_s_disconnect(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
201 state_s_connecting(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
234 state_s_call(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
257 state_s_make_call(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
285 state_s_calling(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
297 state_s_outstanding(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
320 state_s_replying(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
332 state_s_wait_for_call(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
345 state_s_wait_active(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
363 state_r_disconnect(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
399 state_r_call(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
423 state_r_waiting(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
429 state_r_wait_active(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
441 state_r_receiving(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
464 state_r_execute(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
493 state_r_returning(struct iriap_cb *self, IRIAP_EVENT event, struct sk_buff *skb) argument
[all...]
H A Dirttp.c44 static void __irttp_close_tsap(struct tsap_cb *self);
58 static void irttp_run_tx_queue(struct tsap_cb *self);
59 static void irttp_run_rx_queue(struct tsap_cb *self);
61 static void irttp_flush_queues(struct tsap_cb *self);
62 static void irttp_fragment_skb(struct tsap_cb *self, struct sk_buff *skb);
63 static struct sk_buff *irttp_reassemble_skb(struct tsap_cb *self);
134 * Function irttp_start_todo_timer (self, timeout)
140 static inline void irttp_start_todo_timer(struct tsap_cb *self, int timeout) argument
143 mod_timer(&self->todo_timer, jiffies + timeout);
162 struct tsap_cb *self local
205 irttp_flush_queues(struct tsap_cb *self) argument
234 irttp_reassemble_skb(struct tsap_cb *self) argument
291 irttp_fragment_skb(struct tsap_cb *self, struct sk_buff *skb) argument
351 struct tsap_cb *self; local
393 struct tsap_cb *self; local
475 __irttp_close_tsap(struct tsap_cb *self) argument
506 irttp_close_tsap(struct tsap_cb *self) argument
551 irttp_udata_request(struct tsap_cb *self, struct sk_buff *skb) argument
590 irttp_data_request(struct tsap_cb *self, struct sk_buff *skb) argument
701 irttp_run_tx_queue(struct tsap_cb *self) argument
807 irttp_give_credit(struct tsap_cb *self) argument
863 struct tsap_cb *self; local
899 struct tsap_cb *self; local
981 struct tsap_cb *self; local
1012 struct tsap_cb *self; local
1055 irttp_flow_request(struct tsap_cb *self, LOCAL_FLOW flow) argument
1088 irttp_connect_request(struct tsap_cb *self, __u8 dtsap_sel, __u32 saddr, __u32 daddr, struct qos_info *qos, __u32 max_sdu_size, struct sk_buff *userdata) argument
1189 struct tsap_cb *self; local
1274 struct tsap_cb *self; local
1343 irttp_connect_response(struct tsap_cb *self, __u32 max_sdu_size, struct sk_buff *userdata) argument
1490 irttp_disconnect_request(struct tsap_cb *self, struct sk_buff *userdata, int priority) argument
1587 struct tsap_cb *self; local
1631 irttp_do_data_indication(struct tsap_cb *self, struct sk_buff *skb) argument
1669 irttp_run_rx_queue(struct tsap_cb *self) argument
1807 struct tsap_cb *self; local
1841 const struct tsap_cb *self = v; local
[all...]
H A Dirlmp_event.c119 static inline void irlmp_next_lap_state(struct lap_cb *self, argument
125 self->lap_state = state;
128 static inline void irlmp_next_lsap_state(struct lsap_cb *self, argument
132 IRDA_ASSERT(self != NULL, return;);
135 self->lsap_state = state;
139 int irlmp_do_lsap_event(struct lsap_cb *self, IRLMP_EVENT event, argument
142 IRDA_ASSERT(self != NULL, return -1;);
143 IRDA_ASSERT(self->magic == LMP_LSAP_MAGIC, return -1;);
146 __func__, irlmp_event[event], irlsap_state[ self->lsap_state]);
148 return (*lsap_state[self
157 irlmp_do_lap_event(struct lap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
185 struct lsap_cb *self = (struct lsap_cb *) data; local
197 struct lap_cb *self = (struct lap_cb *) data; local
256 irlmp_state_standby(struct lap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
305 irlmp_state_u_connect(struct lap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
380 irlmp_state_active(struct lap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
487 irlmp_state_disconnected(struct lsap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
566 irlmp_state_connect(struct lsap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
628 irlmp_state_connect_pend(struct lsap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
694 irlmp_state_dtr(struct lsap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
786 irlmp_state_setup(struct lsap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
858 irlmp_state_setup_pend(struct lsap_cb *self, IRLMP_EVENT event, struct sk_buff *skb) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/scripts/shares/python/
H A DSambaConfig.py31 def __init__( self, comment ):
32 self.comment = comment
34 def Dump( self, stream, whitespace=None ):
35 if not self.comment:
37 for line in self.comment:
56 def __init__( self, name, value, comment=None ):
57 self.key = string.upper(string.strip(name))
58 self.comment = None
59 assert parm_table.has_key( self.key ), "Bad parameter name! [%s]" % name
60 self
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/irda/
H A Ddonauboe.c244 toshoboe_dumpregs (struct toshoboe_cb *self) argument
256 self->int_tx, self->int_rx, self->int_txunder, self->int_rxover,
257 self->int_sip);
274 if (self->ring)
277 ringbase = virt_to_bus (self->ring);
281 printk (" (%d,%02x)",self->ring->rx[i].len,self
293 toshoboe_disablebm(struct toshoboe_cb *self) argument
306 toshoboe_stopchip(struct toshoboe_cb *self) argument
338 toshoboe_start_DMA(struct toshoboe_cb *self, int opts) argument
348 toshoboe_setbaud(struct toshoboe_cb *self) argument
483 toshoboe_enablebm(struct toshoboe_cb *self) argument
491 toshoboe_initring(struct toshoboe_cb *self) argument
514 toshoboe_resetptrs(struct toshoboe_cb *self) argument
527 toshoboe_initptrs(struct toshoboe_cb *self) argument
549 toshoboe_startchip(struct toshoboe_cb *self) argument
607 toshoboe_isntstuck(struct toshoboe_cb *self) argument
612 toshoboe_checkstuck(struct toshoboe_cb *self) argument
631 toshoboe_makemttpacket(struct toshoboe_cb *self, void *buf, int mtt) argument
661 toshoboe_dumptx(struct toshoboe_cb *self) argument
671 toshoboe_dumprx(struct toshoboe_cb *self, int score) argument
704 struct toshoboe_cb *self = dev_id; local
785 toshoboe_probefail(struct toshoboe_cb *self, char *msg) argument
795 toshoboe_numvalidrcvs(struct toshoboe_cb *self) argument
806 toshoboe_numrcvs(struct toshoboe_cb *self) argument
817 toshoboe_probe(struct toshoboe_cb *self) argument
976 struct toshoboe_cb *self; local
1151 struct toshoboe_cb *self = dev_id; local
1340 struct toshoboe_cb *self; local
1380 struct toshoboe_cb *self; local
1417 struct toshoboe_cb *self; local
1491 struct toshoboe_cb *self = (struct toshoboe_cb*)pci_get_drvdata(pci_dev); local
1535 struct toshoboe_cb *self; local
1700 struct toshoboe_cb *self = (struct toshoboe_cb*)pci_get_drvdata(pci_dev); local
1729 struct toshoboe_cb *self = (struct toshoboe_cb*)pci_get_drvdata(pci_dev); local
[all...]
H A Dsh_irda.c136 int (*xir_fre) (struct sh_irda_self *self);
137 int (*xir_trov) (struct sh_irda_self *self);
138 int (*xir_9) (struct sh_irda_self *self);
139 int (*xir_8) (struct sh_irda_self *self);
140 int (*xir_fte) (struct sh_irda_self *self);
169 static void sh_irda_write(struct sh_irda_self *self, u32 offset, u16 data) argument
173 spin_lock_irqsave(&self->lock, flags);
174 iowrite16(data, self->membase + offset);
175 spin_unlock_irqrestore(&self->lock, flags);
178 static u16 sh_irda_read(struct sh_irda_self *self, u3 argument
190 sh_irda_update_bits(struct sh_irda_self *self, u32 offset, u16 mask, u16 data) argument
216 sh_irda_rcv_ctrl(struct sh_irda_self *self, int enable) argument
224 sh_irda_set_timeout(struct sh_irda_self *self, int interval) argument
240 sh_irda_set_baudrate(struct sh_irda_self *self, int baudrate) argument
265 xir_get_rcv_length(struct sh_irda_self *self) argument
275 xir_fre(struct sh_irda_self *self) argument
282 xir_trov(struct sh_irda_self *self) argument
289 xir_9(struct sh_irda_self *self) argument
296 xir_8(struct sh_irda_self *self) argument
303 xir_fte(struct sh_irda_self *self) argument
337 sir_fre(struct sh_irda_self *self) argument
365 sir_trov(struct sh_irda_self *self) argument
374 sir_tot(struct sh_irda_self *self) argument
384 sir_fer(struct sh_irda_self *self) argument
393 sir_fte(struct sh_irda_self *self) argument
411 sh_irda_set_mode(struct sh_irda_self *self, enum sh_irda_mode mode) argument
455 sh_irda_set_irq_mask(struct sh_irda_self *self) argument
494 struct sh_irda_self *self = dev_id; local
522 sh_irda_crc_reset(struct sh_irda_self *self) argument
527 sh_irda_crc_add(struct sh_irda_self *self, u16 data) argument
532 sh_irda_crc_cnt(struct sh_irda_self *self) argument
537 sh_irda_crc_out(struct sh_irda_self *self) argument
542 sh_irda_crc_init(struct sh_irda_self *self) argument
582 sh_irda_remove_iobuf(struct sh_irda_self *self) argument
592 sh_irda_init_iobuf(struct sh_irda_self *self, int rxsize, int txsize) argument
626 struct sh_irda_self *self = netdev_priv(ndev); local
669 struct sh_irda_self *self = netdev_priv(ndev); local
676 struct sh_irda_self *self = netdev_priv(ndev); local
710 struct sh_irda_self *self = netdev_priv(ndev); local
743 struct sh_irda_self *self; local
819 struct sh_irda_self *self = netdev_priv(ndev); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/tests/
H A DFTPTest.pm19 my ($self, $attr) = @_;
21 return $self->SUPER::_default_for($attr);
26 my ($self) = @_;
27 ($self->SUPER::_standard_keys(), keys %_attr_data);
33 my $self = shift;
35 $self->{_server} = FTPServer->new (input => $self->{_input},
37 $self->{_server_behavior},
40 rootDir => "$self->{_workdir}/$self
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/irda/ircomm/
H A Dircomm_tty.c67 static void ircomm_tty_shutdown(struct ircomm_tty_cb *self);
144 static void __exit __ircomm_tty_cleanup(struct ircomm_tty_cb *self) argument
148 IRDA_ASSERT(self != NULL, return;);
149 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
151 ircomm_tty_shutdown(self);
153 self->magic = 0;
154 kfree(self);
181 * Function ircomm_startup (self)
186 static int ircomm_tty_startup(struct ircomm_tty_cb *self) argument
193 IRDA_ASSERT(self !
244 ircomm_tty_block_til_ready(struct ircomm_tty_cb *self, struct file *filp) argument
367 struct ircomm_tty_cb *self; local
495 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
581 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
602 struct ircomm_tty_cb *self = local
666 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
798 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
838 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
875 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
906 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
936 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
953 ircomm_tty_shutdown(struct ircomm_tty_cb *self) argument
1000 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
1040 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
1053 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) tty->driver_data; local
1068 ircomm_tty_check_modem_status(struct ircomm_tty_cb *self) argument
1134 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance; local
1188 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance; local
1217 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance; local
1243 ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m) argument
1378 struct ircomm_tty_cb *self; local
[all...]
H A Dircomm_event.c43 static int ircomm_state_idle(struct ircomm_cb *self, IRCOMM_EVENT event,
45 static int ircomm_state_waiti(struct ircomm_cb *self, IRCOMM_EVENT event,
47 static int ircomm_state_waitr(struct ircomm_cb *self, IRCOMM_EVENT event,
49 static int ircomm_state_conn(struct ircomm_cb *self, IRCOMM_EVENT event,
80 static int (*state[])(struct ircomm_cb *self, IRCOMM_EVENT event,
90 * Function ircomm_state_idle (self, event, skb)
95 static int ircomm_state_idle(struct ircomm_cb *self, IRCOMM_EVENT event, argument
102 ircomm_next_state(self, IRCOMM_WAITI);
103 ret = self->issue.connect_request(self, sk
124 ircomm_state_waiti(struct ircomm_cb *self, IRCOMM_EVENT event, struct sk_buff *skb, struct ircomm_info *info) argument
154 ircomm_state_waitr(struct ircomm_cb *self, IRCOMM_EVENT event, struct sk_buff *skb, struct ircomm_info *info) argument
187 ircomm_state_conn(struct ircomm_cb *self, IRCOMM_EVENT event, struct sk_buff *skb, struct ircomm_info *info) argument
229 ircomm_do_event(struct ircomm_cb *self, IRCOMM_EVENT event, struct sk_buff *skb, struct ircomm_info *info) argument
244 ircomm_next_state(struct ircomm_cb *self, IRCOMM_STATE state) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/irda/irnet/
H A Dirnet_irda.c23 irnet_socket * self = local
26 if (self == NULL)
32 if (self->ppp_open && !self->ttp_open && !self->ttp_connect) {
33 ppp_unregister_channel(&self->chan);
34 self->ppp_open = 0;
110 * because our input structure (self) is quite different
117 * Function irda_open_tsap (self)
124 irnet_open_tsap(irnet_socket * self) argument
173 irnet_ias_to_tsap(irnet_socket * self, int result, struct ias_value * value) argument
257 irnet_find_lsap_sel(irnet_socket * self) argument
292 irnet_connect_tsap(irnet_socket * self) argument
336 irnet_discover_next_daddr(irnet_socket * self) argument
395 irnet_discover_daddr_and_lsap_sel(irnet_socket * self) argument
451 irnet_dname_to_daddr(irnet_socket * self) argument
503 irda_irnet_create(irnet_socket * self) argument
547 irda_irnet_connect(irnet_socket * self) argument
616 irda_irnet_destroy(irnet_socket * self) argument
702 irnet_daddr_to_dname(irnet_socket * self) argument
749 irnet_find_socket(irnet_socket * self) argument
907 irnet_disconnect_server(irnet_socket * self, struct sk_buff *skb) argument
1107 irnet_socket * self = (irnet_socket *) instance; local
1192 irnet_socket * self = (irnet_socket *) instance; local
1257 irnet_socket * self = (irnet_socket *) instance; local
1299 irnet_socket * self = (irnet_socket *) instance; local
1465 irnet_socket * self = (irnet_socket *) priv; local
1528 irnet_socket * self = (irnet_socket *) priv; local
1642 irnet_socket * self = &irnet_server.s; local
1673 irnet_socket * self = &irnet_server.s; local
1702 irnet_socket * self; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/stf/
H A Dtest.py9 def runtest(self):
13 def setup(self):
14 self.require_root()
16 def runTest(self):
20 def runtest(self):
21 stdout = self.runcmd("ls -l")
24 def setup(self):
25 exit, stdout = self.runcmd_unchecked("spottyfoot --slobber",
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/ui/
H A Dprogress.c12 struct ui_progress *self = malloc(sizeof(*self)); local
14 if (self != NULL) {
18 return self;
22 self->form = newtForm(NULL, NULL, 0);
23 if (self->form == NULL)
25 self->scale = newtScale(0, 0, cols, total);
26 if (self->scale == NULL)
28 newtFormAddComponent(self->form, self
41 ui_progress__update(struct ui_progress *self, u64 curr) argument
49 ui_progress__delete(struct ui_progress *self) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Djack_audio.c64 JackData *self = arg; local
71 if (!self->client)
75 cycle_delay = jack_frames_since_cycle_start(self->client);
78 cycle_time = ff_timefilter_update(self->timefilter,
79 av_gettime() / 1000000.0 - (double) cycle_delay / self->sample_rate,
80 self->buffer_size);
83 if ((av_fifo_size(self->new_pkts) < sizeof(pkt)) || (av_fifo_space(self->filled_pkts) < sizeof(pkt))) {
84 self->pkt_xrun = 1;
89 av_fifo_generic_read(self
120 JackData *self = arg; local
126 JackData *self = arg; local
132 supply_new_packets(JackData *self, AVFormatContext *context) argument
152 JackData *self = context->priv_data; local
219 stop_jack(JackData *self) argument
235 JackData *self = context->priv_data; local
263 JackData *self = context->priv_data; local
320 JackData *self = context->priv_data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/doc/
H A Dapibuild.py92 def __init__(self, name, header=None, module=None, type=None, lineno = 0,
94 self.name = name
95 self.header = header
96 self.module = module
97 self.type = type
98 self.info = info
99 self.extra = extra
100 self.lineno = lineno
101 self.static = 0
103 self
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/doc/
H A Dapibuild.py92 def __init__(self, name, header=None, module=None, type=None, lineno = 0,
94 self.name = name
95 self.header = header
96 self.module = module
97 self.type = type
98 self.info = info
99 self.extra = extra
100 self.lineno = lineno
101 self.static = 0
103 self
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/python/
H A Ddrv_libxml2.py75 def __init__(self,locator):
76 self.__locator = locator
78 def getColumnNumber(self):
82 def getLineNumber(self):
84 return self.__locator.LineNumber()
86 def getPublicId(self):
90 def getSystemId(self):
92 return self.__locator.BaseURI()
96 def __init__(self):
97 xmlreader.XMLReader.__init__(self)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/python/
H A Ddrv_libxml2.py75 def __init__(self,locator):
76 self.__locator = locator
78 def getColumnNumber(self):
82 def getLineNumber(self):
84 return self.__locator.LineNumber()
86 def getPublicId(self):
90 def getSystemId(self):
92 return self.__locator.BaseURI()
96 def __init__(self):
97 xmlreader.XMLReader.__init__(self)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Djack_audio.c62 JackData *self = arg; local
69 if (!self->client)
73 cycle_delay = jack_frames_since_cycle_start(self->client);
76 cycle_time = ff_timefilter_update(self->timefilter,
77 av_gettime() / 1000000.0 - (double) cycle_delay / self->sample_rate,
78 self->buffer_size);
81 if ((av_fifo_size(self->new_pkts) < sizeof(pkt)) || (av_fifo_space(self->filled_pkts) < sizeof(pkt))) {
82 self->pkt_xrun = 1;
87 av_fifo_generic_read(self
112 JackData *self = arg; local
118 JackData *self = arg; local
124 supply_new_packets(JackData *self, AVFormatContext *context) argument
144 JackData *self = context->priv_data; local
210 stop_jack(JackData *self) argument
226 JackData *self = context->priv_data; local
254 JackData *self = context->priv_data; local
311 JackData *self = context->priv_data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/xstc/
H A Dxstc.py136 def __init__(self, name, schemaFileName, descr):
138 self.name = name
139 self.descr = descr
140 self.mainSchema = True
141 self.schemaFileName = fixFileNames(schemaFileName)
142 self.schemaParsed = False
143 self.schemaTried = False
145 def setSchema(self, schemaFileName, parsed):
146 if not self.mainSchema:
148 self
[all...]

Completed in 284 milliseconds

1234567891011>>