Home
last modified time | relevance | path

Searched refs:_list_ (Results 1 – 7 of 7) sorted by relevance

/utopia/UTPA2-700.0.x/modules/msos/msos/nos/
H A DdrvList.h220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
232 #define list_for_each_prev(_item_, _list_) \
233 or (_item_ = (_list_)->prev; _item_ != (_list_); _item_ = _item_->prev)
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/ecos/
H A DdrvList.h220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
232 #define list_for_each_prev(_item_, _list_) \
233 or (_item_ = (_list_)->prev; _item_ != (_list_); _item_ = _item_->prev)
[all …]
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/include/
H A DdrvList.h220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
232 #define list_for_each_prev(_item_, _list_) \
233 or (_item_ = (_list_)->prev; _item_ != (_list_); _item_ = _item_->prev)
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/linux/
H A DdrvList.h220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
232 #define list_for_each_prev(_item_, _list_) \
233 or (_item_ = (_list_)->prev; _item_ != (_list_); _item_ = _item_->prev)
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/optee/
H A DdrvList.h220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
232 #define list_for_each_prev(_item_, _list_) \
233 or (_item_ = (_list_)->prev; _item_ != (_list_); _item_ = _item_->prev)
[all …]
/utopia/UTPA2-700.0.x/modules/msos/msos/nuttx/
H A DdrvList.h220 #define list_for_loop( _item_, _list_ ) \ argument
221 for ( (_item_)=(_list_)->next; (_item_)!=(_list_); (_item_)=(_item_)->next )
223 #define list_for_each_entry(_list_, _head_, _item_) \ argument
224 for ((_list_) = entry_to_container((_head_)->next, typeof(*_list_), _item_); \
225 &((_list_)->_item_) != (_head_); \
226 (_list_) = entry_to_container((_list_)->_item_.next, typeof(*_list_), _item_))
228 #define list_for_loop_ex(_item_, _temp_, _list_) \ argument
229 …for (_item_=(_list_)->next, _temp_=_item_->next; _item_!=(_list_); _item_=_temp_, _temp_=_item_->n…
232 #define list_for_each_prev(_item_, _list_) \
233 or (_item_ = (_list_)->prev; _item_ != (_list_); _item_ = _item_->prev)
[all …]
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/linux/
H A DdrvList.h104 #define INIT_LIST_HEAD( _list_ ) \ argument
106 (_list_)->next = (_list_)->prev = (_list_); \
170 #define list_entry( _list_, _type_, _member_ ) \ argument
171 ((_type_ *)((char *)(_list_)-(char *)(offsetof(_type_,_member_))))
175 #define list_for_each( _ent_, _list_ ) \ argument
176 for ( (_ent_) = (_list_)->next; \
177 (_ent_) != (_list_); \
181 #define list_for_each_entry(_list_, _head_, _item_) \ argument
182 for ((_list_) = list_entry((_head_)->next, typeof(*_list_), _item_); \
183 &((_list_)->_item_) != (_head_); \
[all …]