Loading tools/aidl/AST.cpp +0 −17 Original line number Diff line number Diff line Loading @@ -841,23 +841,6 @@ Document::Write(FILE* to) fprintf(to, "package %s;\n", this->package.c_str()); } // gather the types for the import statements set<Type*> types; N = this->classes.size(); for (i=0; i<N; i++) { Class* c = this->classes[i]; c->GatherTypes(&types); } set<Type*>::iterator it; for (it=types.begin(); it!=types.end(); it++) { Type* t = *it; string pkg = t->Package(); if (pkg.length() != 0 && pkg != this->package) { fprintf(to, "import %s;\n", t->ImportType().c_str()); } } N = this->classes.size(); for (i=0; i<N; i++) { Class* c = this->classes[i]; Loading tools/aidl/generate_java.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -134,7 +134,7 @@ StubClass::make_as_interface(Type *interfaceType) Method* m = new Method; m->comment = "/**\n * Cast an IBinder object into an "; m->comment += interfaceType->Name(); m->comment += interfaceType->QualifiedName(); m->comment += " interface,\n"; m->comment += " * generating a proxy if needed.\n */"; m->modifiers = PUBLIC | STATIC; Loading Loading @@ -324,7 +324,7 @@ generate_method(const method_type* method, Class* interface, transactCodeName += method->name.data; char transactCodeValue[50]; sprintf(transactCodeValue, "(IBinder.FIRST_CALL_TRANSACTION + %d)", index); sprintf(transactCodeValue, "(android.os.IBinder.FIRST_CALL_TRANSACTION + %d)", index); Field* transactCode = new Field(STATIC | FINAL, new Variable(INT_TYPE, transactCodeName)); Loading Loading @@ -518,7 +518,7 @@ generate_method(const method_type* method, Class* interface, new LiteralExpression("Stub." + transactCodeName), _data, _reply ? _reply : NULL_VALUE, new LiteralExpression( oneway ? "IBinder.FLAG_ONEWAY" : "0")); oneway ? "android.os.IBinder.FLAG_ONEWAY" : "0")); tryStatement->statements->Add(call); // throw back exceptions. Loading Loading
tools/aidl/AST.cpp +0 −17 Original line number Diff line number Diff line Loading @@ -841,23 +841,6 @@ Document::Write(FILE* to) fprintf(to, "package %s;\n", this->package.c_str()); } // gather the types for the import statements set<Type*> types; N = this->classes.size(); for (i=0; i<N; i++) { Class* c = this->classes[i]; c->GatherTypes(&types); } set<Type*>::iterator it; for (it=types.begin(); it!=types.end(); it++) { Type* t = *it; string pkg = t->Package(); if (pkg.length() != 0 && pkg != this->package) { fprintf(to, "import %s;\n", t->ImportType().c_str()); } } N = this->classes.size(); for (i=0; i<N; i++) { Class* c = this->classes[i]; Loading
tools/aidl/generate_java.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -134,7 +134,7 @@ StubClass::make_as_interface(Type *interfaceType) Method* m = new Method; m->comment = "/**\n * Cast an IBinder object into an "; m->comment += interfaceType->Name(); m->comment += interfaceType->QualifiedName(); m->comment += " interface,\n"; m->comment += " * generating a proxy if needed.\n */"; m->modifiers = PUBLIC | STATIC; Loading Loading @@ -324,7 +324,7 @@ generate_method(const method_type* method, Class* interface, transactCodeName += method->name.data; char transactCodeValue[50]; sprintf(transactCodeValue, "(IBinder.FIRST_CALL_TRANSACTION + %d)", index); sprintf(transactCodeValue, "(android.os.IBinder.FIRST_CALL_TRANSACTION + %d)", index); Field* transactCode = new Field(STATIC | FINAL, new Variable(INT_TYPE, transactCodeName)); Loading Loading @@ -518,7 +518,7 @@ generate_method(const method_type* method, Class* interface, new LiteralExpression("Stub." + transactCodeName), _data, _reply ? _reply : NULL_VALUE, new LiteralExpression( oneway ? "IBinder.FLAG_ONEWAY" : "0")); oneway ? "android.os.IBinder.FLAG_ONEWAY" : "0")); tryStatement->statements->Add(call); // throw back exceptions. Loading