HomeSort by relevance Sort by last modified time
    Searched refs:doQuiteABit (Results 1 - 11 of 11) sorted by null

  /hardware/interfaces/tests/bar/1.0/default/
Bar.cpp 31 Return<double> Bar::doQuiteABit(
36 return mFoo->doQuiteABit(a, b, c, d);
Bar.h 36 virtual Return<double> doQuiteABit(int32_t a, int64_t b, float c, double d) override;
  /hardware/interfaces/tests/baz/1.0/
IBaz.hal 75 doQuiteABit(int32_t a, int64_t b, float c, double d) generates (double something);
  /hardware/interfaces/tests/baz/1.0/default/
Baz.h 59 Return<double> doQuiteABit(int32_t a, int64_t b, float c, double d) override;
Baz.cpp 216 Return<double> Baz::doQuiteABit(int32_t a, int64_t b, float c, double d) {
217 LOG(INFO) << "Baz::doQuiteABit("
  /hardware/interfaces/tests/foo/1.0/default/
Foo.h 30 virtual Return<double> doQuiteABit(int32_t a, int64_t b, float c, double d) override;
Foo.cpp 31 Return<double> Foo::doQuiteABit(
36 LOG(INFO) << "SERVER(Foo) doQuiteABit("
  /hardware/interfaces/tests/foo/1.0/
IFoo.hal 127 doQuiteABit(int32_t a, int64_t b, float c, double d) generates (double something);
  /system/tools/hidl/test/java_test/
hidl_test_java_native.cpp 382 auto result = baz->doQuiteABit(1, 2ll, 3.0f, 4.0);
  /system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
HidlTestJava.java 477 ExpectTrue(proxy.doQuiteABit(1, 2L, 3.0f, 4.0) == 666.5);
769 public double doQuiteABit(int a, long b, float c, double d) {
770 Log.d(TAG, "Baz doQuiteABit " + a + ", " + b + ", " + c + ", " + d);
  /system/tools/hidl/test/
hidl_test_client.cpp 867 ALOGI("CLIENT call doQuiteABit");
868 double something = foo->doQuiteABit(1, 2, 3.0f, 4.0);
869 ALOGI("CLIENT doQuiteABit returned %f.", something);
    [all...]

Completed in 117 milliseconds