Home
last modified time | relevance | path

Searched refs:aml_object (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/usr.sbin/acpitools/aml/
H A Daml_evalobj.h37 union aml_object *aml_eval_objref(struct aml_environ *,
38 union aml_object *);
39 union aml_object *aml_eval_name(struct aml_environ *,
43 union aml_object *);
45 union aml_object *aml_invoke_method(struct aml_name *,
46 int, union aml_object *);
47 union aml_object *aml_invoke_method_by_name(char *,
48 int, union aml_object *);
H A Daml_obj.h83 union aml_object **objects;
181 union aml_object *ref;
202 union aml_object { union
221 union aml_object *aml_copy_object(struct aml_environ *,
222 union aml_object *);
223 union aml_object *aml_alloc_object(enum aml_objtype,
224 union aml_object *);
225 void aml_free_objectcontent(union aml_object *);
226 void aml_free_object(union aml_object **);
227 void aml_realloc_object(union aml_object *, int);
H A Daml_obj.c59 union aml_object *
60 aml_copy_object(struct aml_environ *env, union aml_object *orig) in aml_copy_object()
63 union aml_object *ret; in aml_copy_object()
97 ret->package.elements * sizeof(union aml_object *)); in aml_copy_object()
122 union aml_object *
123 aml_alloc_object(enum aml_objtype type, union aml_object *orig) in aml_alloc_object()
126 union aml_object *ret; in aml_alloc_object()
188 aml_free_objectcontent(union aml_object *obj) in aml_free_objectcontent()
212 aml_free_object(union aml_object **obj) in aml_free_object()
214 union aml_object *body; in aml_free_object()
[all …]
H A Daml_evalobj.c66 static union aml_object *aml_eval_fieldobject(struct aml_environ *env,
69 static union aml_object *
76 union aml_object tobj; in aml_eval_fieldobject()
134 union aml_object *
135 aml_eval_objref(struct aml_environ *env, union aml_object *obj) in aml_eval_objref()
138 union aml_object num1; in aml_eval_objref()
139 union aml_object *ref, *ret; in aml_eval_objref()
183 union aml_object *
191 union aml_object *obj, *ret; in aml_eval_name()
192 union aml_object *sr in aml_eval_name()
[all...]
H A Daml_store.c59 aml_store_to_fieldname(struct aml_environ *env, union aml_object *obj, in aml_store_to_fieldname()
66 union aml_object tobj, iobj, *tmpobj; in aml_store_to_fieldname()
145 aml_store_to_buffer(struct aml_environ *env, union aml_object *obj, in aml_store_to_buffer()
146 union aml_object *buf, int offset) in aml_store_to_buffer()
198 aml_store_to_object(struct aml_environ *env, union aml_object *src, in aml_store_to_object()
199 union aml_object * dest) in aml_store_to_object()
261 aml_store_to_objref(struct aml_environ *env, union aml_object *obj, in aml_store_to_objref()
262 union aml_object *r) in aml_store_to_objref()
265 union aml_object *ref; in aml_store_to_objref()
299 aml_store_to_name(struct aml_environ *env, union aml_object *ob
[all...]
H A Daml_store.h36 void aml_store_to_name(struct aml_environ *, union aml_object *,
38 void aml_store_to_object(struct aml_environ *, union aml_object *,
39 union aml_object *);
H A Daml_parse.c83 static union aml_object *aml_parse_defbuffer(struct aml_environ *env,
88 union aml_object *obj,
91 union aml_object *obj,
95 static union aml_object *aml_parse_defpackage(struct aml_environ *env,
129 union aml_object *srcbuf,
288 union aml_object *obj; in aml_parse_objectlist()
358 static union aml_object *
366 union aml_object *obj; in aml_parse_defbuffer()
405 union aml_object *obj; in aml_parse_concat_number()
427 aml_parse_concat_buffer(struct aml_environ *env, union aml_object *obj, in aml_parse_concat_buffer()
[all …]
H A Daml_common.h63 union aml_object;
74 void aml_showobject(union aml_object *);
H A Daml_env.h45 union aml_object tempobject;
H A Daml_name.h43 union aml_object *property;
H A Daml_common.c155 aml_showobject(union aml_object * obj) in aml_showobject()
/netbsd-src/usr.sbin/acpitools/amldb/
H A Ddebug.c81 union aml_object argv[7], *retval; in aml_dbgr()