Lines Matching refs:tmpobj
430 union aml_object *tmpobj, *tmpobj2, *resobj; in aml_parse_concat_buffer() local
433 tmpobj = aml_eval_name(env, aml_parse_termobj(env, indent)); in aml_parse_concat_buffer()
435 if (tmpobj->type != aml_t_buffer) { in aml_parse_concat_buffer()
439 AML_COPY_OBJECT(tmpobj2, env, tmpobj, NULL); in aml_parse_concat_buffer()
470 union aml_object *tmpobj, *tmpobj2, *resobj; in aml_parse_concat_string() local
473 tmpobj = aml_eval_name(env, aml_parse_termobj(env, indent)); in aml_parse_concat_string()
475 if (tmpobj->type != aml_t_string) { in aml_parse_concat_string()
479 AML_COPY_OBJECT(tmpobj2, env, tmpobj, NULL); in aml_parse_concat_string()
495 strlcat((char *)resobj->str.string, (const char *)tmpobj->str.string, len); in aml_parse_concat_string()
507 union aml_object *obj, *tmpobj; in aml_parse_concatop() local
520 AML_COPY_OBJECT(tmpobj, env, obj, NULL); in aml_parse_concatop()
522 aml_free_object(&tmpobj); in aml_parse_concatop()
527 AML_COPY_OBJECT(tmpobj, env, obj, NULL); in aml_parse_concatop()
529 aml_free_object(&tmpobj); in aml_parse_concatop()
1286 union aml_object *tmpobj; in aml_parse_termobj() local
1625 AML_COPY_OBJECT(tmpobj, env, in aml_parse_termobj()
1627 aname->property = tmpobj; in aml_parse_termobj()
1641 aml_store_to_name(env, tmpobj, destname1); in aml_parse_termobj()
1647 AML_COPY_OBJECT(tmpobj, env, destname1->property, NULL); in aml_parse_termobj()
1648 aname->property = tmpobj; in aml_parse_termobj()
1649 if (tmpobj == NULL) { in aml_parse_termobj()
1813 tmpobj = aml_eval_name(env, aname); in aml_parse_termobj()
1817 switch (tmpobj->type) { in aml_parse_termobj()
1819 num1 = tmpobj->buffer.size; in aml_parse_termobj()
1822 num1 = strlen((const char *)tmpobj->str.string); in aml_parse_termobj()
1825 num1 = tmpobj->package.elements; in aml_parse_termobj()