Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 17 of 17) sorted by relevance

/system/iorap/src/common/
Dmacros.h47 #define IORAP_PP_MAP_SEP(FN, sep, ...) IORAP_PP_MAP_IMPL(IORAP_PP_NARG(__VA_ARGS__), FN, sep, __VA_… argument
48 #define IORAP_PP_MAP_IMPL(N, FN, sep, ...) IORAP_PP_CONCAT(IORAP_PP_MAP_IMPL_, N)(FN, sep, __VA_ARG… argument
49 #define IORAP_PP_MAP_IMPL_1(FN, sep, a1) FN(a1) argument
50 #define IORAP_PP_MAP_IMPL_2(FN, sep, a1, a2) FN(a1) sep() FN(a2) argument
51 #define IORAP_PP_MAP_IMPL_3(FN, sep, a1, a2, a3) FN(a1) sep() FN(a2) sep() FN(a3) argument
52 #define IORAP_PP_MAP_IMPL_4(FN, sep, a1, a2, a3, a4) FN(a1) sep() FN(a2) sep() FN(a3) sep() FN(a4) argument
/system/core/property_service/libpropertyinfoparser/
Dproperty_info_parser.cpp117 const char* sep = strchr(remaining_name, '.'); in GetPropertyInfoIndexes() local
131 if (sep == nullptr) { in GetPropertyInfoIndexes()
135 const uint32_t substr_size = sep - remaining_name; in GetPropertyInfoIndexes()
142 remaining_name = sep + 1; in GetPropertyInfoIndexes()
/system/core/adb/daemon/
Dauth.cpp71 char* sep = strpbrk(const_cast<char*>(line.c_str()), " \t"); in adbd_auth_verify() local
72 if (sep) *sep = '\0'; in adbd_auth_verify()
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
Dutil.c444 printline(struct str *line, int sep, regmatch_t *matches, int m) in printline() argument
460 putchar(sep); in printline()
466 putchar(sep); in printline()
471 putchar(sep); in printline()
Dgrep.h147 void printline(struct str *line, int sep, regmatch_t *matches, int m);
/system/core/logd/
Dmain.cpp173 static const char sep[] = ",:;|+ \t\f"; in check_flag() local
174 if ((cp != prop) && !strchr(sep, cp[-1])) { in check_flag()
178 return !*cp || !!strchr(sep, *cp); in check_flag()
/system/extras/simpleperf/scripts/
Dbinary_cache_builder.py122 target_file = target_file.replace('/', os.sep)
160 binary_cache_file = binary[1:].replace('/', os.sep)
Dutils.py189 path_in_ndk = path_in_ndk.replace('/', os.sep)
205 default_ndk_path = os.path.join(home, DEFAULT_NDK_PATH[platform].replace('/', os.sep))
636 abstract_path = abstract_path.replace('/', os.sep)
Dannotate.py406 to_path = os.path.join(dest_dir, from_path.replace(':\\', os.sep))
Dtest.py1170 return path.replace('/', os.sep)
/system/core/liblog/
Dproperties.cpp404 static const char sep[] = ",:;|+ \t\f"; in check_flag() local
405 if ((cp != prop) && !strchr(sep, cp[-1])) { in check_flag()
409 return !*cp || !!strchr(sep, *cp); in check_flag()
/system/security/keystore/
Dblob.cpp715 auto sep = filename.find('_'); in filename2UidAlias() local
716 if (sep == std::string::npos) return result; in filename2UidAlias()
718 std::stringstream s(filename.substr(0, sep)); in filename2UidAlias()
722 alias = decodeKeyName(filename.substr(sep + 1)); in filename2UidAlias()
/system/bt/bta/av/
Dbta_av_main.cc1439 const tBTA_AV_SEP& sep = p_scb->seps[j]; in bta_debug_av_dump() local
1440 if (sep.av_handle == 0) { in bta_debug_av_dump()
1444 dprintf(fd, " SEP AVDTP handle: %d\n", sep.av_handle); in bta_debug_av_dump()
1445 dprintf(fd, " Local SEP type: %d\n", sep.tsep); in bta_debug_av_dump()
1446 dprintf(fd, " Codec: %s\n", A2DP_CodecName(sep.codec_info)); in bta_debug_av_dump()
Dbta_av_aact.cc718 av_open.sep = AVDT_TSEP_SNK; in bta_av_role_res()
720 av_open.sep = AVDT_TSEP_SRC; in bta_av_role_res()
1265 open.sep = AVDT_TSEP_SNK; in bta_av_str_opened()
1267 open.sep = AVDT_TSEP_SRC; in bta_av_str_opened()
1662 open.sep = AVDT_TSEP_SNK; in bta_av_open_failed()
1664 open.sep = AVDT_TSEP_SRC; in bta_av_open_failed()
2471 data.open.sep = AVDT_TSEP_SNK; in bta_av_str_closed()
2473 data.open.sep = AVDT_TSEP_SRC; in bta_av_str_closed()
/system/bt/bta/include/
Dbta_av_api.h184 uint8_t sep; /* sep type of peer device */ member
/system/libufdt/utils/src/
Dmkdtboimg.py856 filepath = args.dtbdir + os.sep + dt_arg['filename']
/system/bt/btif/src/
Dbtif_av.cc1507 CHECK(peer_.PeerSep() == p_bta_data->open.sep); in ProcessEvent()
1657 CHECK(peer_.PeerSep() == p_bta_data->open.sep); in ProcessEvent()