Home | History | Annotate | Download | only in aidl

Lines Matching refs:iface

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