You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
501 B
17 lines
501 B
#pragma once |
|
|
|
#include <string> |
|
#include <vintf/Transport.h> |
|
|
|
namespace android { |
|
namespace hardware { |
|
|
|
// Get transport method from vendor interface manifest. |
|
// interfaceName has the format "android.hardware.foo@1.0::IFoo" |
|
// instanceName is "default", "ashmem", etc. |
|
// If it starts with "android.hidl.", a static map is looked up instead. |
|
vintf::Transport getTransport(const std::string &interfaceName, |
|
const std::string &instanceName); |
|
|
|
} // hardware |
|
} // android
|
|
|