Searched refs:tokens (Results 1 – 14 of 14) sorted by relevance
/system/bt/service/ipc/ |
D | linux_ipc_host.cc | 270 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/ |
D | test_service.cpp | 51 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/ |
D | adb.py | 50 tokens = line.split(": ") 51 if len(tokens) < 2: 53 key = tokens[0].replace("[", "").replace("]", "") 54 value = tokens[1].replace("[", "").replace("]", "")
|
D | inferno.py | 69 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/ |
D | uuid.cc | 84 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/ |
D | fingerprintd.te | 18 # Need to add auth tokens to KeyStore
|
D | gatekeeperd.te | 24 # Need to add auth tokens to KeyStore
|
/system/sepolicy/public/ |
D | fingerprintd.te | 18 # Need to add auth tokens to KeyStore
|
D | gatekeeperd.te | 24 # Need to add auth tokens to KeyStore
|
/system/core/init/ |
D | perfboot.py | 249 tokens = l.split(' ') 250 if len(tokens) >= 2: 251 supported_tags.add(tokens[1])
|
D | README.md | 7 All of these are line-oriented, consisting of tokens separated by 10 whitespace from breaking text into multiple tokens. The backslash,
|
/system/tools/aidl/ |
D | aidl_language_y.yy | 71 /* A couple of tokens that are keywords elsewhere are identifiers when 74 * aforementioned keyword tokens.
|
/system/extras/libfec/ |
D | fec_verity.cpp | 360 auto tokens = android::base::Split(table.get(), " "); in parse_table() local 362 for (const auto& token : tokens) { in parse_table()
|
/system/core/fs_mgr/ |
D | fs_mgr_verity.cpp | 711 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()
|