Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 25 of 42) sorted by relevance

12

/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/
H A DdrvTimer.c170 timer = list_entry (tmp, struct timer_list, entry); in SW_Timer_Tick()
235 if( timer->entry.next != NULL && timer->entry.prev != NULL ) in del_timer_body()
237 USB_ASSERT(timer->entry.prev->next == &timer->entry, "timer->entry.prev->next error!!!!\n"); in del_timer_body()
238 USB_ASSERT(timer->entry.next != 0, "timer->entry.next!!!!\n"); in del_timer_body()
239 USB_ASSERT(timer->entry.next->prev == &timer->entry, "timer->entry.next->prev error!!!!\n"); in del_timer_body()
240 USB_ASSERT(timer->entry.prev != 0, "timer->entry.prev error!!!!\n"); in del_timer_body()
241 list_del_init(&timer->entry); in del_timer_body()
262 if( timer->entry.next != NULL && timer->entry.prev != NULL ) in del_timer_sync_body()
264 USB_ASSERT(timer->entry.prev->next == &timer->entry, "timer->entry.prev->next error!!!!\n"); in del_timer_sync_body()
265 USB_ASSERT(timer->entry.next != 0, "timer->entry.next!!!!\n"); in del_timer_sync_body()
[all …]
H A DdrvBus.c122 struct list_head * entry; in device_attach() local
132 list_for_each(entry,&bus->drivers_list) { in device_attach()
133 _mtr = entry ; in device_attach()
148 struct list_head * entry; in driver_attach() local
155 list_for_each(entry,&bus->devices_list) { in driver_attach()
156 _mtr = entry ; in driver_attach()
182 struct list_head * entry, * next; in driver_detach() local
186 list_for_each_safe(entry,next,&drv->devices) { in driver_detach()
188 _mptr = entry; in driver_detach()
H A DdrvPCIMEM.c247 struct list_head *entry; in pci_pool_alloc() local
255 list_for_each (entry, &pool->page_list) { in pci_pool_alloc()
258 const struct list_head *__mptr = entry; in pci_pool_alloc()
414 struct list_head *entry; in pool_find_page() local
418 list_for_each (entry, &pool->page_list) { in pool_find_page()
421 const struct list_head *__mptr = entry; in pool_find_page()
H A DdrvUSB.c1996 struct list_head *entry; in usb_find_interface() local
2000 list_for_each(entry, &drv->driver.devices) { in usb_find_interface()
2001 const struct list_head *_mptr = entry; in usb_find_interface()
2086 struct list_head *entry; in usb_find_dev_for_driver() local
2089 list_for_each(entry, &pDriver->devices) in usb_find_dev_for_driver()
2091 const struct list_head *_mptr = entry; in usb_find_dev_for_driver()
H A DdrvEHCIDBG.cpp510 struct list_head *entry; in qh_lines() local
571 list_for_each (entry, &qh->qtd_list) { in qh_lines()
573 list_entry (entry,struct ehci_qtd,qtd_list,struct list_head,td); in qh_lines()
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/
H A DdrvTimer.c144 timer = entry_to_container (tmp, struct timer_list, entry); in ms_SW_Timer_Tick()
157 timer = entry_to_container (tmp, struct timer_list, entry); in ms_SW_Timer_Tick()
213 if( timer->entry.next != NULL && timer->entry.prev != NULL ) in ms_del_timer()
215 USB_ASSERT(timer->entry.prev->next == &timer->entry, "timer->entry.prev->next error!!!!\n"); in ms_del_timer()
216 USB_ASSERT(timer->entry.next != 0, "timer->entry.next!!!!\n"); in ms_del_timer()
217 USB_ASSERT(timer->entry.next->prev == &timer->entry, "timer->entry.next->prev error!!!!\n"); in ms_del_timer()
218 USB_ASSERT(timer->entry.prev != 0, "timer->entry.prev error!!!!\n"); in ms_del_timer()
219 ms_list_remove_and_init(&timer->entry); in ms_del_timer()
240 if( timer->entry.next != NULL && timer->entry.prev != NULL ) in ms_del_timer_sync()
242 USB_ASSERT(timer->entry.prev->next == &timer->entry, "timer->entry.prev->next error!!!!\n"); in ms_del_timer_sync()
[all …]
H A DdrvBus.c143 struct list_head * entry; in ms_device_attach() local
155 list_for_loop(entry,&ms_bus->drivers_list) in ms_device_attach()
157 _mtr = entry ; in ms_device_attach()
177 struct list_head * entry; in ms_driver_attach() local
184 list_for_loop(entry,&ms_bus->devices_list) in ms_driver_attach()
186 _mtr = entry ; in ms_driver_attach()
224 struct list_head * entry, * next; in ms_driver_detach() local
228 list_for_loop_ex(entry,next,&ms_drv->devices) in ms_driver_detach()
231 _mptr = entry; in ms_driver_detach()
H A DdrvPCIMEM.c182 struct list_head *entry; in ms_mem_pool_alloc() local
189 list_for_loop (entry, &pMem_pool->page_list) in ms_mem_pool_alloc()
193 const struct list_head *__mptr = entry; in ms_mem_pool_alloc()
H A DdrvUSB.c306 struct list_head *entry;
309 list_for_loop(entry, &pDriver->devices)
311 const struct list_head *_mptr = entry;
H A DdrvEhciHcd.c1103 struct list_head *entry, *tmp; in ms_qh_completions() local
1121 list_for_loop_ex (entry, tmp, &pQh->qtd_list) in ms_qh_completions()
1127 pQtd = entry_to_container (entry, struct ehci_qtd, qtd_list); in ms_qh_completions()
2208 struct list_head *entry, *tmp; in dbg_timeout_async() local
2210 list_for_loop_ex (entry, tmp, &qh->qtd_list) { in dbg_timeout_async()
2213 qtd = entry_to_container (entry, struct ehci_qtd, qtd_list); in dbg_timeout_async()
/utopia/UTPA2-700.0.x/projects/build/scripts/
H A Dget_maintainer.pl1101 while (my $entry = shift(@address_list)) {
1102 push_email_address($entry, $role);
1117 foreach my $entry (@email_to) {
1119 my ($entry_name, $entry_address) = parse_email($entry->[0]);
1121 && ($role eq "" || !($entry->[1] =~ m/$role/))
1123 if ($entry->[1] eq "") {
1124 $entry->[1] = "$role";
1126 $entry->[1] = "$entry->[1],$role";
1130 if ($email eq $entry->[0]
1131 && ($role eq "" || !($entry->[1] =~ m/$role/))
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/mips74k/
H A DasmCPU.c381 int entry; in local_flush_tlb_all() local
390 entry = read_c0_with_wired(); in local_flush_tlb_all()
393 while (entry < 16){ // current_cpu_data.tlbsize) { in local_flush_tlb_all()
395 write_c0_entryhigh(UNIQUE_ENTRYHI(entry)); in local_flush_tlb_all()
396 write_c0_by_index(entry); in local_flush_tlb_all()
400 entry++; in local_flush_tlb_all()
454 int entry; in read_tlb_entry_number() local
457 entry = read_c0_with_wired(); in read_tlb_entry_number()
460 return entry; in read_tlb_entry_number()
/utopia/UTPA2-700.0.x/modules/msos/msos/nos/
H A DdrvMPool.c126 extern void _cpu_mmu_map_memory (_cpu_memory_t *entry);
198 _cpu_memory_t entry; in MsOS_MPool_Mapping() local
272 entry.pa = Busaddr; in MsOS_MPool_Mapping()
273 entry.size = mpool_info[idx].u64MpoolSize; in MsOS_MPool_Mapping()
274 entry.va = mpool_info[idx].pVirtStart; in MsOS_MPool_Mapping()
275 entry.access = MMU_AP_FULL; in MsOS_MPool_Mapping()
278 entry.attributes = MMU_BUFFERED; in MsOS_MPool_Mapping()
281 entry.attributes = MMU_CACHED | MMU_BUFFERED; in MsOS_MPool_Mapping()
284 _cpu_mmu_map_memory (&entry); in MsOS_MPool_Mapping()
/utopia/UTPA2-700.0.x/modules/msos/msos/mips1004k/
H A DasmCPU.c381 int entry; in local_flush_tlb_all() local
390 entry = read_c0_with_wired(); in local_flush_tlb_all()
393 while (entry < 16){ // current_cpu_data.tlbsize) { in local_flush_tlb_all()
395 write_c0_entryhigh(UNIQUE_ENTRYHI(entry)); in local_flush_tlb_all()
396 write_c0_by_index(entry); in local_flush_tlb_all()
400 entry++; in local_flush_tlb_all()
/utopia/UTPA2-700.0.x/modules/msos/msos/mips34k/
H A DasmCPU.c382 int entry; in local_flush_tlb_all() local
391 entry = read_c0_with_wired(); in local_flush_tlb_all()
394 while (entry < 16){ // current_cpu_data.tlbsize) { in local_flush_tlb_all()
396 write_c0_entryhigh(UNIQUE_ENTRYHI(entry)); in local_flush_tlb_all()
397 write_c0_by_index(entry); in local_flush_tlb_all()
401 entry++; in local_flush_tlb_all()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/rpcsvc/
H A Dnfs_prot.h223 struct entry { struct
227 struct entry *nextentry; argument
229 typedef struct entry entry; typedef
232 entry *entries;
407 extern bool_t xdr_entry (XDR *, entry*);
H A Dnfs_prot.x261 struct entry { struct
265 entry *nextentry; argument
269 entry *entries;
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/netfilter_ipv6/
H A Dip6_tables.h109 struct ip6t_entry entry; member
121 struct ip6t_entry entry; member
133 .entry = IP6T_ENTRY_INIT(sizeof(struct ip6t_standard)), \
141 .entry = IP6T_ENTRY_INIT(sizeof(struct ip6t_error)), \
/utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/
H A Dargz.h19 error_t argz_delete (char **argz, size_t *argz_len, char *entry);
20 error_t argz_insert (char **argz, size_t *argz_len, char *before, const char *entry);
21 char * argz_next (char *argz, size_t argz_len, const char *entry);
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/
H A Dstab.def100 this entry is immediately followed by a CAUGHT stab saying what exception
132 In an object file, there is no significant data in this entry.
136 /* Alternate entry point. Value is its address. */
178 /* Second symbol entry containing a length-value for the preceding entry.
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/
H A DdrvList.h88 static __inline__ void list_del_init(struct list_head *entry) in list_del_init() argument
90 list_del(entry); in list_del_init()
91 INIT_LIST_HEAD(entry); in list_del_init()
H A DdrvTimer.h89 struct list_head entry; member
138 INIT_LIST_HEAD(&timer->entry); in init_timer()
/utopia/UTPA2-700.0.x/modules/msos/msos/ecos/
H A DMsOS_ecos.c484 MS_U32 entry = 0; in MsOS_Init() local
495 entry = read_tlb_entry_number(); in MsOS_Init()
497 if(entry == 0) in MsOS_Init()
507 MS_U32 entry = 0; in MsOS_Init() local
518 entry = read_tlb_entry_number(); in MsOS_Init()
520 if(entry == 0) in MsOS_Init()
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/include/
H A DdrvTimer.h92 struct list_head entry; member
109 ms_list_init(&st_timer->entry); in ms_init_timer()
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/
H A Dqconf.cc1687 QString entry; in saveSettings() local
1690 entry = "single"; in saveSettings()
1694 entry = "split"; in saveSettings()
1698 entry = "full"; in saveSettings()
1704 configSettings->writeEntry("/listMode", entry); in saveSettings()

12