Home
last modified time | relevance | path

Searched refs:tokens (Results 1 – 14 of 14) sorted by relevance

/system/bt/service/ipc/
Dlinux_ipc_host.cc270 std::vector<std::string> tokens = base::SplitString( in OnMessage() local
272 switch (tokens.size()) { in OnMessage()
274 if (tokens[0] == kSetAdapterNameCommand) in OnMessage()
275 return OnSetAdapterName(tokens[1]); in OnMessage()
276 if (tokens[0] == kCreateServiceCommand) return OnCreateService(tokens[1]); in OnMessage()
277 if (tokens[0] == kDestroyServiceCommand) in OnMessage()
278 return OnDestroyService(tokens[1]); in OnMessage()
279 if (tokens[0] == kStartServiceCommand) return OnStartService(tokens[1]); in OnMessage()
280 if (tokens[0] == kStopServiceCommand) return OnStopService(tokens[1]); in OnMessage()
283 if (tokens[0] == kSetCharacteristicValueCommand) in OnMessage()
[all …]
/system/core/init/test_service/
Dtest_service.cpp51 std::vector<std::string> tokens = android::base::Split(line, ":"); in main() local
52 if (tokens.size() >= 2) { in main()
53 std::string field = tokens[0]; in main()
54 std::string value = android::base::Trim(tokens[1]); in main()
/system/extras/simpleperf/inferno/
Dadb.py50 tokens = line.split(": ")
51 if len(tokens) < 2:
53 key = tokens[0].replace("[", "").replace("]", "")
54 value = tokens[1].replace("[", "").replace("]", "")
Dinferno.py69 tokens = process.args.events.split(" ")
70 if len(tokens) == 2:
71 num_events = tokens[0]
72 event_name = tokens[1]
76 print "Got : [" + ",".join(tokens) + "]"
/system/bt/service/common/bluetooth/
Duuid.cc84 std::vector<std::string> tokens = base::SplitString( in UUID() local
87 if (tokens.size() != 5) return; in UUID()
89 uuid = base::JoinString(tokens, ""); in UUID()
/system/sepolicy/prebuilts/api/26.0/public/
Dfingerprintd.te18 # Need to add auth tokens to KeyStore
Dgatekeeperd.te24 # Need to add auth tokens to KeyStore
/system/sepolicy/public/
Dfingerprintd.te18 # Need to add auth tokens to KeyStore
Dgatekeeperd.te24 # Need to add auth tokens to KeyStore
/system/core/init/
Dperfboot.py249 tokens = l.split(' ')
250 if len(tokens) >= 2:
251 supported_tags.add(tokens[1])
DREADME.md7 All of these are line-oriented, consisting of tokens separated by
10 whitespace from breaking text into multiple tokens. The backslash,
/system/tools/aidl/
Daidl_language_y.yy71 /* A couple of tokens that are keywords elsewhere are identifiers when
74 * aforementioned keyword tokens.
/system/extras/libfec/
Dfec_verity.cpp360 auto tokens = android::base::Split(table.get(), " "); in parse_table() local
362 for (const auto& token : tokens) { in parse_table()
/system/core/fs_mgr/
Dfs_mgr_verity.cpp711 auto tokens = android::base::Split(*table, " "); in update_verity_table_blk_device() local
716 for (const auto& token : tokens) { in update_verity_table_blk_device()