Searched refs:configStr (Results 1 – 3 of 3) sorted by relevance
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/ |
D | BinlogHelperTest.java | 238 String configStr = in configBinLog_multiConfig_withGlobal() local 243 assertSameLimits(HEADER_FULL, makeLog(configStr, "otherpackage.service/method")); in configBinLog_multiConfig_withGlobal() 245 assertSameLimits(BOTH_256, makeLog(configStr, "package.both256/method1")); in configBinLog_multiConfig_withGlobal() 246 assertSameLimits(BOTH_256, makeLog(configStr, "package.both256/method2")); in configBinLog_multiConfig_withGlobal() 247 assertSameLimits(BOTH_256, makeLog(configStr, "package.both256/method3")); in configBinLog_multiConfig_withGlobal() 250 new Builder().header(128).msg(128).build(), makeLog(configStr, "package.service1/both128")); in configBinLog_multiConfig_withGlobal() 252 assertSameLimits(HEADER_FULL, makeLog(configStr, "package.service1/absent")); in configBinLog_multiConfig_withGlobal() 254 assertSameLimits(MSG_FULL, makeLog(configStr, "package.service2/method_messageOnly")); in configBinLog_multiConfig_withGlobal() 256 assertSameLimits(HEADER_FULL, makeLog(configStr, "package.service2/absent")); in configBinLog_multiConfig_withGlobal() 261 String configStr = in configBinLog_multiConfig_noGlobal() local [all …]
|
/external/deqp-deps/glslang/StandAlone/ |
D | ResourceLimits.cpp | 267 std::string configStr(config); in DecodeResourceLimits() local 269 while ((pos = configStr.find_first_not_of(delims, pos)) != std::string::npos) { in DecodeResourceLimits() 271 const size_t token_e = configStr.find_first_of(delims, token_s); in DecodeResourceLimits() 272 const size_t value_s = configStr.find_first_not_of(delims, token_e); in DecodeResourceLimits() 273 const size_t value_e = configStr.find_first_of(delims, value_s); in DecodeResourceLimits() 277 const std::string tokenStr = configStr.substr(token_s, token_e-token_s); in DecodeResourceLimits() 278 const std::string valueStr = configStr.substr(value_s, value_e-value_s); in DecodeResourceLimits()
|
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/ |
D | BinaryLogProviderImpl.java | 49 BinaryLogProviderImpl(BinaryLogSink sink, String configStr) throws IOException { in BinaryLogProviderImpl() argument 52 factory = new BinlogHelper.FactoryImpl(sink, configStr); in BinaryLogProviderImpl()
|