Home | History | Annotate | Download | only in aidl

Lines Matching refs:stub

27     this->comment = "/** Local-side IPC implementation stub class. */";
43 ctor->comment = "/** Construct the stub at attach it to the "
45 ctor->name = "Stub";
138 proxyType += ".Stub.Proxy";
291 // == the stub method ====================================================
455 new LiteralExpression("Stub." + transactCodeName),
496 generate_interface_descriptors(StubClass* stub, ProxyClass* proxy)
500 c->statements->Add(new MethodCall(stub->transact_reply, "writeString",
503 stub->transact_switch->cases.push_back(c);
530 // the stub inner class
531 StubClass* stub = new StubClass(
532 NAMES.Find(iface->package, append(iface->name.data, ".Stub").c_str()),
534 interface->elements.push_back(stub);
539 append(iface->name.data, ".Stub.Proxy").c_str()),
541 stub->elements.push_back(proxy);
543 // stub and proxy support for getInterfaceDescriptor()
544 generate_interface_descriptors(stub, proxy);
551 generate_method((method_type*)item, interface, stub, proxy, index);