HomeSort by relevance Sort by last modified time
    Searched defs:container_of (Results 1 - 19 of 19) sorted by null

  /external/iptables/libiptc/
linux_stddef.h 16 * container_of - cast a member of a structure out to the containing structure
23 #define container_of(ptr, type, member) ({ \ macro
linux_list.h 8 * container_of - cast a member of a structure out to the containing structure
15 #define container_of(ptr, type, member) ({ \ macro
331 container_of(ptr, type, member)
646 #define hlist_entry(ptr, type, member) container_of(ptr,type,member)
  /external/blktrace/
rbtree.h 120 #define container_of(ptr, type, member) ({ \ macro
141 #define rb_entry(ptr, type, member) container_of(ptr, type, member)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_double_list.h 114 #ifndef container_of
115 #define container_of(ptr, sample, member) \ macro
121 for (pos = NULL, pos = container_of((head)->next, pos, member); \
123 pos = container_of(pos->member.next, pos, member))
126 for (pos = NULL, pos = container_of((head)->next, pos, member), \
127 storage = container_of(pos->member.next, pos, member); \
129 pos = storage, storage = container_of(storage->member.next, storage, member))
132 for (pos = NULL, pos = container_of((head)->prev, pos, member), \
133 storage = container_of(pos->member.prev, pos, member); \
135 pos = storage, storage = container_of(storage->member.prev, storage, member)
    [all...]
  /external/linux-tools-perf/util/include/linux/
kernel.h 25 #ifndef container_of
27 * container_of - cast a member of a structure out to the containing structure
33 #define container_of(ptr, type, member) ({ \ macro
  /external/mesa3d/src/gallium/auxiliary/util/
u_double_list.h 114 #ifndef container_of
115 #define container_of(ptr, sample, member) \ macro
121 for (pos = NULL, pos = container_of((head)->next, pos, member); \
123 pos = container_of(pos->member.next, pos, member))
126 for (pos = NULL, pos = container_of((head)->next, pos, member), \
127 storage = container_of(pos->member.next, pos, member); \
129 pos = storage, storage = container_of(storage->member.next, storage, member))
132 for (pos = NULL, pos = container_of((head)->prev, pos, member), \
133 storage = container_of(pos->member.prev, pos, member); \
135 pos = storage, storage = container_of(storage->member.prev, storage, member)
    [all...]
  /external/qemu/
osdep.h 32 #ifndef container_of
33 #define container_of(ptr, type, member) ({ \ macro
43 container_of(dev, type, field);}))
45 #define DO_UPCAST(type, field, dev) container_of(dev, type, field)
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStream.cpp 25 #ifndef container_of
26 #define container_of(ptr, type, member) \ macro
198 container_of(buffer.buffer, ANativeWindowBuffer, handle),
206 container_of(buffer.buffer, ANativeWindowBuffer, handle),
  /external/blktrace/btt/
list.h 13 #ifndef container_of
21 #define container_of(ptr, type, member) ({ \ macro
147 container_of(ptr, type, member)
  /system/core/fastbootd/
usb_linux_client.c 55 #define container_of(ptr, type, member) \ macro
239 struct usb_transport *usb_transport = container_of(t, struct usb_transport, transport);
279 struct usb_transport *usb_transport = container_of(t, struct usb_transport, transport);
295 struct usb_transport *usb_transport = container_of(t, struct usb_transport, transport);
319 struct usb_transport *usb_transport = container_of(transport, struct usb_transport, transport);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_core.c 50 #define container_of(ptr, type, field) \ macro
76 rb_context = container_of(ptr, struct rbug_context, list);
92 tr_shdr = container_of(ptr, struct rbug_shader, list);
188 tr_tex = container_of(ptr, struct rbug_resource, list);
210 tr_tex = container_of(ptr, struct rbug_resource, list);
257 tr_tex = container_of(ptr, struct rbug_resource, list);
307 rb_context = container_of(ptr, struct rbug_context, list);
534 tr_shdr = container_of(ptr, struct rbug_shader, list);
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_core.c 50 #define container_of(ptr, type, field) \ macro
76 rb_context = container_of(ptr, struct rbug_context, list);
92 tr_shdr = container_of(ptr, struct rbug_shader, list);
188 tr_tex = container_of(ptr, struct rbug_resource, list);
210 tr_tex = container_of(ptr, struct rbug_resource, list);
257 tr_tex = container_of(ptr, struct rbug_resource, list);
307 rb_context = container_of(ptr, struct rbug_context, list);
534 tr_shdr = container_of(ptr, struct rbug_shader, list);
  /frameworks/av/services/camera/libcameraservice/device1/
CameraHardwareInterface.h 575 #ifndef container_of
576 #define container_of(ptr, type, member) ({ \ macro
594 container_of(buffer, ANativeWindowBuffer, handle), -1);
602 container_of(buffer, ANativeWindowBuffer, handle), -1);
  /hardware/libhardware/tests/camera2/
camera2_utils.cpp 314 #ifndef container_of
315 #define container_of(ptr, type, member) \ macro
531 container_of(buffer, ANativeWindowBuffer, handle), -1);
543 container_of(buffer, ANativeWindowBuffer, handle), -1);
  /external/kernel-headers/original/linux/
kernel.h 289 * container_of - cast a member of a structure out to the containing structure
295 #define container_of(ptr, type, member) ({ \ macro
  /system/core/libsparse/
output_file.c 66 #define container_of(inner, outer_t, elem) \ macro
106 container_of((_o), struct output_file_gz, out)
114 container_of((_o), struct output_file_normal, out)
123 container_of((_o), struct output_file_callback, out)
  /external/chromium_org/third_party/libusb/src/libusb/
libusbi.h 141 #define container_of(ptr, type, member) ({ \ macro
    [all...]
  /external/libusb/libusb/
libusbi.h 99 #define container_of(ptr, type, member) ({ \ macro
  /frameworks/av/services/camera/libcameraservice/device2/
Camera2Device.cpp 960 #ifndef container_of
961 #define container_of(ptr, type, member) \ macro
1342 #define container_of macro
    [all...]

Completed in 2053 milliseconds