Home | History | Annotate | Download | only in aidl

Lines Matching refs:iface

818             interface_type* iface = (interface_type*)malloc(
820 memset(iface, 0, sizeof(interface_type));
821 iface->document_item.item_type = INTERFACE_TYPE_BINDER;
822 iface->interface_token.lineno = lineno;
823 iface->interface_token.data = strdup(type);
824 iface->package = packagename ? strdup(packagename) : NULL;
825 iface->name.lineno = lineno;
826 iface->name.data = strdup(classname);
827 iface->open_brace_token.lineno = lineno;
828 iface->open_brace_token.data = strdup("{");
829 iface->close_brace_token.lineno = lineno;
830 iface->close_brace_token.data = strdup("}");
831 doc = (document_item_type*)iface;
1008 interface_type* iface = (interface_type*)doc;
1009 if (iface->package) {
1010 line += iface->package;
1013 line += iface->name.data;