Home
last modified time | relevance | path

Searched refs:strings (Results 1 – 18 of 18) sorted by relevance

/hardware/interfaces/tests/trie/1.0/default/
DTrie.cpp41 Return<void> Trie::addStrings(const TrieNode& trie, const hidl_vec<hidl_string>& strings, in addStrings() argument
43 LOG(INFO) << "SERVER(Trie) addStrings(trie, " << strings.size() << " strings)"; in addStrings()
48 for (const auto& str : strings) { in addStrings()
55 Return<void> Trie::containsStrings(const TrieNode& trie, const hidl_vec<hidl_string>& strings, in containsStrings() argument
57 LOG(INFO) << "SERVER(Trie) containsStrings(trie, " << strings.size() << " strings)"; in containsStrings()
59 std::vector<bool> ret(strings.size()); in containsStrings()
60 for (size_t i = 0; i != strings.size(); ++i) { in containsStrings()
61 ret[i] = containsString(&trie, strings[i]); in containsStrings()
DTrie.h42 virtual Return<void> addStrings(const TrieNode& trie, const hidl_vec<hidl_string>& strings,
44 virtual Return<void> containsStrings(const TrieNode& trie, const hidl_vec<hidl_string>& strings,
/hardware/interfaces/tests/trie/1.0/
DITrie.hal21 addStrings(TrieNode trie, vec<string> strings) generates (TrieNode trie);
22 containsStrings(TrieNode trie, vec<string> strings) generates (vec<bool> contains);
/hardware/qcom/sm8150/gps/utils/
DLogBuffer.cpp156 char **strings; in signalHandler() local
159 strings = backtrace_symbols(buffer, nptrs); in signalHandler()
160 if (strings != NULL) { in signalHandler()
165 string s(strings[i]); in signalHandler()
/hardware/interfaces/radio/deprecated/1.0/
DIOemHook.hal49 * This request passes strings between framework and vendor code.
52 * @param data data passed as strings
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
DAndroid.mk52 -Wno-writable-strings \
/hardware/interfaces/biometrics/face/1.0/
DIBiometricsFaceClientCallback.hal70 * is expected to provide help strings to cover all known values.
87 * device. The vendor is expected to provide error strings to cover
/hardware/interfaces/compatibility_matrices/build/
Dvintf_compatibility_matrix.go169 "inputs": strings.Join(inputPaths.Strings(), ":"),
/hardware/interfaces/health/2.1/
Dtypes.hal79 * - empty string (for strings);
/hardware/interfaces/health/2.0/
Dtypes.hal137 * - empty string (for strings);
DREADME142 strings):
DREADME.md142 strings):
/hardware/ril/reference-ril/
Dreference-ril.c2107 const char** strings = (const char**)data;; local
2110 asprintf(&cmd, "AT+CPIN=%s", strings[0]);
2112 asprintf(&cmd, "AT+CPIN=%s,%s", strings[0], strings[1]);
/hardware/google/interfaces/media/c2/1.0/
Dtypes.hal238 * is optional for read-only strings and blobs.
/hardware/interfaces/wifi/1.0/
DIWifiChip.hal124 * The information in these ASCII strings are vendor specific and does not
/hardware/interfaces/neuralnetworks/1.2/
DIDevice.hal31 * The version string must be a unique token among the set of version strings of
/hardware/interfaces/media/c2/1.0/
Dtypes.hal276 * is optional for read-only strings and blobs.
/hardware/ril/libril/
Dril_service.cpp6918 char **strings = (char **) response; in onUssdInd() local
6919 char *mode = strings[0]; in onUssdInd()
6920 hidl_string msg = convertCharPtrToHidlString(strings[1]); in onUssdInd()