Home
last modified time | relevance | path

Searched refs:portStr (Results 1 – 12 of 12) sorted by relevance

/external/grpc-grpc/examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/cpp/
DHelloworldActivity.java98 String portStr = serverPortEdit.getText().toString(); in startOrStopServer() local
99 int port = TextUtils.isEmpty(portStr) ? 50051 : Integer.valueOf(portStr); in startOrStopServer()
135 String portStr = params[2]; in doInBackground() local
136 int port = TextUtils.isEmpty(portStr) ? 50051 : Integer.valueOf(portStr); in doInBackground()
/external/grpc-grpc-java/examples/example-kotlin/android/helloworld/app/src/main/kotlin/io/grpc/helloworldexample/
DHelloworldActivity.kt67 val portStr = params[2] in doInBackground() constant
68 val port = if (TextUtils.isEmpty(portStr)) 0 else Integer.valueOf(portStr) in doInBackground()
/external/grpc-grpc/src/android/test/interop/app/src/main/java/io/grpc/interop/cpp/
DInteropActivity.java86 String portStr = params[1]; in doInBackground() local
87 int port = TextUtils.isEmpty(portStr) ? 50051 : Integer.valueOf(portStr); in doInBackground()
/external/grpc-grpc-java/examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/
DHelloworldActivity.java84 String portStr = params[2]; in doInBackground() local
85 int port = TextUtils.isEmpty(portStr) ? 0 : Integer.valueOf(portStr); in doInBackground()
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DDirectRTCClient.java117 String portStr = matcher.group(matcher.groupCount()); in connectToRoomInternal() local
120 if (portStr != null) { in connectToRoomInternal()
122 port = Integer.parseInt(portStr); in connectToRoomInternal()
124 reportError("Invalid port number: " + portStr); in connectToRoomInternal()
/external/grpc-grpc-java/android-interop-testing/app/src/main/java/io/grpc/android/integrationtest/
DTesterActivity.java117 String portStr = portEdit.getText().toString(); in startTest() local
118 int port = TextUtils.isEmpty(portStr) ? 8080 : Integer.valueOf(portStr); in startTest()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DSocketTransportService.java199 String portStr; in attach() local
202 portStr = address; in attach()
205 portStr = address.substring(splitIndex+1); in attach()
210 port = Integer.decode(portStr).intValue(); in attach()
/external/grpc-grpc-java/examples/android/clientcache/app/src/main/java/io/grpc/clientcacheexample/
DClientCacheExampleActivity.java107 String portStr = (String) params[2]; in doInBackground() local
111 int port = TextUtils.isEmpty(portStr) ? 0 : Integer.valueOf(portStr); in doInBackground()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageProcessor.java245 String portStr = sentBy.substring(ind + 1); in setSentBy() local
247 int port = Integer.parseInt(portStr); in setSentBy()
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DURI.java687 String portStr = p_uriSpec.substring(start, index); in initializeAuthority() local
689 if (portStr.length() > 0) in initializeAuthority()
691 for (int i = 0; i < portStr.length(); i++) in initializeAuthority()
693 if (!isDigit(portStr.charAt(i))) in initializeAuthority()
696 portStr + " is invalid. Port should only contain digits!"); in initializeAuthority()
702 port = Integer.parseInt(portStr); in initializeAuthority()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DURI.java707 String portStr = p_uriSpec.substring(start, index); in initializeAuthority() local
709 if (portStr.length() > 0) in initializeAuthority()
711 for (int i = 0; i < portStr.length(); i++) in initializeAuthority()
713 if (!isDigit(portStr.charAt(i))) in initializeAuthority()
716 portStr + " is invalid. Port should only contain digits!"); in initializeAuthority()
722 port = Integer.parseInt(portStr); in initializeAuthority()
/external/grpc-grpc-java/examples/android/routeguide/app/src/main/java/io/grpc/routeguideexample/
DRouteGuideActivity.java78 String portStr = portEdit.getText().toString(); in startRouteGuide() local
79 int port = TextUtils.isEmpty(portStr) ? 0 : Integer.valueOf(portStr); in startRouteGuide()