Home
last modified time | relevance | path

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

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DCallOptions.java313 int existingIdx = -1; in withOption() local
316 existingIdx = i; in withOption()
321 newOptions.customOptions = new Object[customOptions.length + (existingIdx == -1 ? 1 : 0)][2]; in withOption()
324 if (existingIdx == -1) { in withOption()
329 newOptions.customOptions[existingIdx][1] = value; in withOption()