Home
last modified time | relevance | path

Searched defs:object (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/openbmc/linux/arch/parisc/math-emu/
H A Dfloat.h48 #define Sall(object) (object) argument
49 #define Ssign(object) Bitfield_extract( 0, 1,object) argument
50 #define Ssignedsign(object) Bitfield_signed_extract( 0, 1,object) argument
51 #define Sexponent(object) Bitfield_extract( 1, 8,object) argument
52 #define Smantissa(object) Bitfield_mask( 9, 23,object) argument
53 #define Ssignaling(object) Bitfield_extract( 9, 1,object) argument
54 #define Ssignalingnan(object) Bitfield_extract( 1, 9,object) argument
55 #define Shigh2mantissa(object) Bitfield_extract( 9, 2,object) argument
56 #define Sexponentmantissa(object) Bitfield_mask( 1, 31,object) argument
57 #define Ssignexponent(object) Bitfield_extract( 0, 9,object) argument
[all …]
H A Dfpbits.h40 #define Bitfield_extract(start, length, object) \ argument
44 #define Bitfield_signed_extract(start, length, object) \ argument
47 #define Bitfield_mask(start, len, object) \ argument
50 #define Bitfield_deposit(value,start,len,object) object = \ argument
/openbmc/sdbusplus/include/sdbusplus/server/
H A Dobject.hpp14 namespace object namespace
39 struct object : struct
57 enum class action
76 object(bus_t& bus, const char* path, in object() argument
87 ~object() override in ~object()
98 void emit_object_added() in emit_object_added()
114 bus_t __sdbusplus_server_object_bus;
115 std::string __sdbusplus_server_object_path;
116 action __sdbusplus_server_object_signalstate = action::defer_emit;
117 SdBusInterface* __sdbusplus_server_object_intf;
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/core/
H A Dobject.c32 struct nvkm_object *object; in nvkm_object_search() local
63 nvkm_object_remove(struct nvkm_object *object) in nvkm_object_remove()
74 nvkm_object_insert(struct nvkm_object *object) in nvkm_object_insert()
102 nvkm_object_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) in nvkm_object_mthd()
110 nvkm_object_ntfy(struct nvkm_object *object, u32 mthd, in nvkm_object_ntfy()
119 nvkm_object_map(struct nvkm_object *object, void *argv, u32 argc, in nvkm_object_map()
128 nvkm_object_unmap(struct nvkm_object *object) in nvkm_object_unmap()
136 nvkm_object_rd08(struct nvkm_object *object, u64 addr, u8 *data) in nvkm_object_rd08()
144 nvkm_object_rd16(struct nvkm_object *object, u64 addr, u16 *data) in nvkm_object_rd16()
152 nvkm_object_rd32(struct nvkm_object *object, u64 addr, u32 *data) in nvkm_object_rd32()
[all …]
H A Doproxy.c27 nvkm_oproxy_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) in nvkm_oproxy_mthd()
33 nvkm_oproxy_ntfy(struct nvkm_object *object, u32 mthd, in nvkm_oproxy_ntfy()
40 nvkm_oproxy_map(struct nvkm_object *object, void *argv, u32 argc, in nvkm_oproxy_map()
48 nvkm_oproxy_unmap(struct nvkm_object *object) in nvkm_oproxy_unmap()
59 nvkm_oproxy_rd08(struct nvkm_object *object, u64 addr, u8 *data) in nvkm_oproxy_rd08()
65 nvkm_oproxy_rd16(struct nvkm_object *object, u64 addr, u16 *data) in nvkm_oproxy_rd16()
71 nvkm_oproxy_rd32(struct nvkm_object *object, u64 addr, u32 *data) in nvkm_oproxy_rd32()
77 nvkm_oproxy_wr08(struct nvkm_object *object, u64 addr, u8 data) in nvkm_oproxy_wr08()
83 nvkm_oproxy_wr16(struct nvkm_object *object, u64 addr, u16 data) in nvkm_oproxy_wr16()
89 nvkm_oproxy_wr32(struct nvkm_object *object, u64 addr, u32 data) in nvkm_oproxy_wr32()
[all …]
H A Dioctl.c34 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_nop()
53 nvkm_ioctl_sclass_(struct nvkm_object *object, int index, struct nvkm_oclass *oclass) in nvkm_ioctl_sclass_()
72 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_sclass()
109 struct nvkm_object *object = NULL; in nvkm_ioctl_new() local
167 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_del()
186 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_mthd()
206 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_rd()
246 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_wr()
275 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_map()
300 struct nvkm_object *object, void *data, u32 size) in nvkm_ioctl_unmap()
[all …]
/openbmc/linux/tools/lib/perf/include/internal/
H A Drc_check.h43 #define ADD_RC_CHK(result, object) (result = object, object) argument
46 #define RC_CHK_ACCESS(object) object argument
49 #define RC_CHK_FREE(object) free(object) argument
52 #define RC_CHK_GET(result, object) ADD_RC_CHK(result, object) argument
55 #define RC_CHK_PUT(object) {} argument
74 #define ADD_RC_CHK(result, object) \ argument
83 #define RC_CHK_ACCESS(object) object->orig argument
86 #define RC_CHK_FREE(object) \ argument
93 #define RC_CHK_GET(result, object) ADD_RC_CHK(result, (object ? object->orig : NULL)) argument
96 #define RC_CHK_PUT(object) \ argument
/openbmc/openpower-hw-diags/analyzer/ras-data/
H A Dras-data-definition.md106 #### 5.1.1) action type `action`
116 #### 5.1.2) action type `callout_self`
126 #### 5.1.3) action type `callout_unit`
137 #### 5.1.4) action type `callout_connected`
148 #### 5.1.5) action type `callout_bus`
167 #### 5.1.6) action type `callout_clock`
186 #### 5.1.7) action type `callout_procedure`
202 #### 5.1.8) action type `callout_part`
219 #### 5.1.9) action type `plugin`
/openbmc/linux/fs/cachefiles/
H A Dinterface.c26 struct cachefiles_object *object; in cachefiles_alloc_object() local
56 void cachefiles_see_object(struct cachefiles_object *object, in cachefiles_see_object()
66 struct cachefiles_object *cachefiles_grab_object(struct cachefiles_object *object, in cachefiles_grab_object()
79 void cachefiles_put_object(struct cachefiles_object *object, in cachefiles_put_object()
114 static int cachefiles_adjust_size(struct cachefiles_object *object) in cachefiles_adjust_size()
179 struct cachefiles_object *object; in cachefiles_lookup_cookie() local
232 static bool cachefiles_shorten_object(struct cachefiles_object *object, in cachefiles_shorten_object()
281 struct cachefiles_object *object = cachefiles_cres_object(cres); in cachefiles_resize_cookie() local
308 static void cachefiles_commit_object(struct cachefiles_object *object, in cachefiles_commit_object()
327 static void cachefiles_clean_up_object(struct cachefiles_object *object, in cachefiles_clean_up_object()
[all …]
H A Dnamei.c17 static bool __cachefiles_mark_inode_in_use(struct cachefiles_object *object, in __cachefiles_mark_inode_in_use()
33 static bool cachefiles_mark_inode_in_use(struct cachefiles_object *object, in cachefiles_mark_inode_in_use()
47 static void __cachefiles_unmark_inode_in_use(struct cachefiles_object *object, in __cachefiles_unmark_inode_in_use()
54 static void cachefiles_do_unmark_inode_in_use(struct cachefiles_object *object, in cachefiles_do_unmark_inode_in_use()
66 void cachefiles_unmark_inode_in_use(struct cachefiles_object *object, in cachefiles_unmark_inode_in_use()
229 struct cachefiles_object *object, in cachefiles_unlink()
265 struct cachefiles_object *object, in cachefiles_bury_object()
414 int cachefiles_delete_object(struct cachefiles_object *object, in cachefiles_delete_object()
438 struct file *cachefiles_create_tmpfile(struct cachefiles_object *object) in cachefiles_create_tmpfile()
517 static bool cachefiles_create_file(struct cachefiles_object *object) in cachefiles_create_file()
[all …]
H A Dondemand.c21 struct cachefiles_object *object = file->private_data; in cachefiles_ondemand_fd_release() local
62 struct cachefiles_object *object = kiocb->ki_filp->private_data; in cachefiles_ondemand_fd_write_iter() local
100 struct cachefiles_object *object = filp->private_data; in cachefiles_ondemand_fd_llseek() local
122 struct cachefiles_object *object = filp->private_data; in cachefiles_ondemand_fd_ioctl() local
299 struct cachefiles_object *object; in cachefiles_ondemand_get_fd() local
383 struct cachefiles_object *object; in cachefiles_ondemand_select_req() local
488 static int cachefiles_ondemand_send_req(struct cachefiles_object *object, in cachefiles_ondemand_send_req()
615 struct cachefiles_object *object = req->object; in cachefiles_ondemand_init_open_req() local
649 struct cachefiles_object *object = req->object; in cachefiles_ondemand_init_close_req() local
666 struct cachefiles_object *object = req->object; in cachefiles_ondemand_init_read_req() local
[all …]
/openbmc/qemu/scripts/qapi/
H A Dexpr.py56 def check_name_is_str(name: object,
186 def check_keys(value: Dict[str, object], argument
250 def check_if(expr: Dict[str, object], argument
267 def _check_if(cond: Union[str, object]) -> None: argument
294 def _check_infix(operator: str, operands: object) -> None:
313 def normalize_members(members: object) -> None:
336 def check_type_name(value: Optional[object],
342 def check_type_name_or_array(value: Optional[object],
357 def check_type_implicit(value: Optional[object],
401 def check_type_name_or_implicit(value: Optional[object],
[all …]
/openbmc/linux/mm/
H A Dkmemleak.c296 struct kmemleak_object *object) in hex_dump_object()
324 static bool color_white(const struct kmemleak_object *object) in color_white()
330 static bool color_gray(const struct kmemleak_object *object) in color_gray()
341 static bool unreferenced_object(struct kmemleak_object *object) in unreferenced_object()
353 struct kmemleak_object *object) in print_unreferenced()
380 static void dump_object_info(struct kmemleak_object *object) in dump_object_info()
409 struct kmemleak_object *object; in __lookup_object() local
443 static int get_object(struct kmemleak_object *object) in get_object()
454 struct kmemleak_object *object; in mem_pool_alloc() local
481 static void mem_pool_free(struct kmemleak_object *object) in mem_pool_free()
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/device/
H A Duser.c38 struct nvkm_object object; member
75 struct nvkm_object *object = &udev->object; in nvkm_udevice_info() local
172 struct nvkm_object *object = &udev->object; in nvkm_udevice_time() local
189 nvkm_udevice_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) in nvkm_udevice_mthd()
205 nvkm_udevice_rd08(struct nvkm_object *object, u64 addr, u8 *data) in nvkm_udevice_rd08()
213 nvkm_udevice_rd16(struct nvkm_object *object, u64 addr, u16 *data) in nvkm_udevice_rd16()
221 nvkm_udevice_rd32(struct nvkm_object *object, u64 addr, u32 *data) in nvkm_udevice_rd32()
229 nvkm_udevice_wr08(struct nvkm_object *object, u64 addr, u8 data) in nvkm_udevice_wr08()
237 nvkm_udevice_wr16(struct nvkm_object *object, u64 addr, u16 data) in nvkm_udevice_wr16()
245 nvkm_udevice_wr32(struct nvkm_object *object, u64 addr, u32 data) in nvkm_udevice_wr32()
[all …]
/openbmc/linux/sound/pci/asihpi/
H A Dhpimsginit.c27 static void hpi_init_message(struct hpi_message *phm, u16 object, in hpi_init_message()
56 void hpi_init_response(struct hpi_response *phr, u16 object, u16 function, in hpi_init_response()
79 struct hpi_response *phr, u16 object, u16 function) in hpi_init_message_response()
89 u16 object, u16 function) in hpi_init_messageV1()
103 u16 object, u16 function) in hpi_init_responseV1()
115 struct hpi_response_header *phr, u16 res_size, u16 object, in hpi_init_message_responseV1()
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Dchan.c30 nvkm_disp_chan_rd32(struct nvkm_object *object, u64 addr, u32 *data) in nvkm_disp_chan_rd32()
41 nvkm_disp_chan_wr32(struct nvkm_object *object, u64 addr, u32 data) in nvkm_disp_chan_wr32()
52 nvkm_disp_chan_ntfy(struct nvkm_object *object, u32 type, struct nvkm_event **pevent) in nvkm_disp_chan_ntfy()
69 nvkm_disp_chan_map(struct nvkm_object *object, void *argv, u32 argc, in nvkm_disp_chan_map()
90 struct nvkm_disp_chan_object *object = container_of(base, typeof(*object), oproxy); in nvkm_disp_chan_child_del_() local
108 struct nvkm_disp_chan_object *object; in nvkm_disp_chan_child_new() local
129 nvkm_disp_chan_child_get(struct nvkm_object *object, int index, struct nvkm_oclass *sclass) in nvkm_disp_chan_child_get()
153 nvkm_disp_chan_fini(struct nvkm_object *object, bool suspend) in nvkm_disp_chan_fini()
163 nvkm_disp_chan_init(struct nvkm_object *object) in nvkm_disp_chan_init()
172 nvkm_disp_chan_dtor(struct nvkm_object *object) in nvkm_disp_chan_dtor()
H A Duconn.c34 nvkm_uconn_uevent_aux(struct nvkm_object *object, u64 token, u32 bits) in nvkm_uconn_uevent_aux()
51 nvkm_uconn_uevent_gpio(struct nvkm_object *object, u64 token, u32 bits) in nvkm_uconn_uevent_gpio()
78 nvkm_uconn_uevent(struct nvkm_object *object, void *argv, u32 argc, struct nvkm_uevent *uevent) in nvkm_uconn_uevent()
151 nvkm_uconn_mthd(struct nvkm_object *object, u32 mthd, void *argv, u32 argc) in nvkm_uconn_mthd()
165 nvkm_uconn_dtor(struct nvkm_object *object) in nvkm_uconn_dtor()
/openbmc/linux/drivers/gpu/drm/nouveau/nvif/
H A Dobject.c31 nvif_object_ioctl(struct nvif_object *object, void *data, u32 size, void **hack) in nvif_object_ioctl()
58 nvif_object_sclass_get(struct nvif_object *object, struct nvif_sclass **psclass) in nvif_object_sclass_get()
102 nvif_object_rd(struct nvif_object *object, int size, u64 addr) in nvif_object_rd()
121 nvif_object_wr(struct nvif_object *object, int size, u64 addr, u32 data) in nvif_object_wr()
139 nvif_object_mthd(struct nvif_object *object, u32 mthd, void *data, u32 size) in nvif_object_mthd()
168 nvif_object_unmap_handle(struct nvif_object *object) in nvif_object_unmap_handle()
181 nvif_object_map_handle(struct nvif_object *object, void *argv, u32 argc, in nvif_object_map_handle()
205 nvif_object_unmap(struct nvif_object *object) in nvif_object_unmap()
220 nvif_object_map(struct nvif_object *object, void *argv, u32 argc) in nvif_object_map()
244 nvif_object_dtor(struct nvif_object *object) in nvif_object_dtor()
[all …]
/openbmc/linux/mm/kasan/
H A Dcommon.c136 void __kasan_unpoison_object_data(struct kmem_cache *cache, void *object) in __kasan_unpoison_object_data()
141 void __kasan_poison_object_data(struct kmem_cache *cache, void *object) in __kasan_poison_object_data()
162 const void *object, bool init) in assign_tag()
188 const void *object) in __kasan_init_slab_obj()
200 static inline bool ____kasan_slab_free(struct kmem_cache *cache, void *object, in ____kasan_slab_free()
241 bool __kasan_slab_free(struct kmem_cache *cache, void *object, in __kasan_slab_free()
299 void *object, gfp_t flags, bool init) in __kasan_slab_alloc()
334 const void *object, size_t size, gfp_t flags) in ____kasan_kmalloc()
380 void * __must_check __kasan_kmalloc(struct kmem_cache *cache, const void *object, in __kasan_kmalloc()
422 void * __must_check __kasan_krealloc(const void *object, size_t size, gfp_t flags) in __kasan_krealloc()
/openbmc/linux/drivers/acpi/acpica/
H A Dutdelete.c36 static void acpi_ut_delete_internal_obj(union acpi_operand_object *object) in acpi_ut_delete_internal_obj()
365 acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action) in acpi_ut_update_ref_count()
482 acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action) in acpi_ut_update_object_reference()
677 void acpi_ut_add_reference(union acpi_operand_object *object) in acpi_ut_add_reference()
710 void acpi_ut_remove_reference(union acpi_operand_object *object) in acpi_ut_remove_reference()
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fault/
H A Duser.c32 nvkm_ufault_uevent(struct nvkm_object *object, void *argv, u32 argc, struct nvkm_uevent *uevent) in nvkm_ufault_uevent()
47 nvkm_ufault_map(struct nvkm_object *object, void *argv, u32 argc, in nvkm_ufault_map()
59 nvkm_ufault_fini(struct nvkm_object *object, bool suspend) in nvkm_ufault_fini()
67 nvkm_ufault_init(struct nvkm_object *object) in nvkm_ufault_init()
75 nvkm_ufault_dtor(struct nvkm_object *object) in nvkm_ufault_dtor()
/openbmc/linux/tools/bpf/resolve_btfids/
H A Dmain.c114 struct object { struct
115 const char *path;
116 const char *btf;
117 const char *base_btf_path;
119 struct {
129 } efile;
131 struct rb_root sets;
132 struct rb_root structs;
133 struct rb_root unions;
134 struct rb_root typedefs;
[all …]
/openbmc/linux/include/linux/
H A Dkasan.h134 void *object) in kasan_unpoison_object_data()
142 void *object) in kasan_poison_object_data()
151 struct kmem_cache *cache, const void *object) in kasan_init_slab_obj()
161 void *object, bool init) in kasan_slab_free()
185 struct kmem_cache *s, void *object, gfp_t flags, bool init) in kasan_slab_alloc()
195 const void *object, size_t size, gfp_t flags) in kasan_kmalloc()
214 static __always_inline void * __must_check kasan_krealloc(const void *object, in kasan_krealloc()
246 void *object) {} in kasan_unpoison_object_data()
248 void *object) {} in kasan_poison_object_data()
250 const void *object) in kasan_init_slab_obj()
[all …]
/openbmc/libcper/
H A Djson-schema.c38 int validate_schema_from_file(const char *schema_file, json_object *object, in validate_schema_from_file()
69 json_object *object, char *error_message) in validate_schema()
126 json_object *object, char *error_message) in validate_field()
263 json_object *object, char *error_message) in validate_integer()
299 json_object *object, const char *error_message) in validate_string()
312 json_object *object, char *error_message) in validate_object()
407 json_object *object, char *error_message) in validate_array()
/openbmc/skeleton/libopenbmc_intf/
H A Dopenbmc_intf.c858 hwmon_get_poll_interval (Hwmon *object) in hwmon_get_poll_interval()
875 hwmon_set_poll_interval (Hwmon *object, gint value) in hwmon_set_poll_interval()
893 hwmon_get_sysfs_path (Hwmon *object) in hwmon_get_sysfs_path()
911 hwmon_dup_sysfs_path (Hwmon *object) in hwmon_dup_sysfs_path()
928 hwmon_set_sysfs_path (Hwmon *object, const gchar *value) in hwmon_set_sysfs_path()
944 hwmon_get_scale (Hwmon *object) in hwmon_get_scale()
961 hwmon_set_scale (Hwmon *object, gint value) in hwmon_set_scale()
1007 hwmon_proxy_get_property (GObject *object, in hwmon_proxy_get_property()
1054 hwmon_proxy_set_property (GObject *object, in hwmon_proxy_set_property()
1144 hwmon_proxy_get_poll_interval (Hwmon *object) in hwmon_proxy_get_poll_interval()
[all …]

12345678910>>...14