Lines Matching refs:foo
41 …ry structure. The initial version is defined as `v1_0`, for example, `drivers/interface/foo/v1.0/`.
45 package ohos.hdi.foo.v1_0;
47 import ohos.hdi.foo.v1_0.IFooCallback;
48 import ohos.hdi.foo.v1_0.MyTypes;
60 package ohos.hdi.foo.v1_0;
75 package ohos.hdi.foo.v1_0;
83 …- Add the `BUILD.gn` file to the `drivers/interface/foo/v1.0/` directory. The file content is as f…
86 …hdi("foo") { # Target .so files (libfoo_client_v1.0.z.so and libfoo…
87 … package = "ohos.hdi.foo.v1_0" # Package name, which must match the .idl path.
88 …module_name = "foo" # moduleName that determines the driver descriptor (struct…
100 …termediate code is generated in the `out/[product_name]/gen/drivers/interfaces/foo/v1_0` directory.
169 `//drivers/interface/foo/v1.0:libfoo_proxy_1.0"`
176 …sptr<IFoo> foo = OHOS::HDI::Foo::V1_0::Foo::Get(); // Use the built-in static method of the Foo ob…
177 if (foo == nullptr) {
181 foo->Bar(); // Do interface call.