Home
last modified time | relevance | path

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

/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/
DQueryTaskConfig.java54 private final int queryMode; field in QueryTaskConfig
74 this.queryMode = other.queryMode; in QueryTaskConfig()
88 QueryTaskConfig(int queryMode, in QueryTaskConfig() argument
92 this.queryMode = queryMode; in QueryTaskConfig()
101 if (this.queryMode == AGGRESSIVE_QUERY_MODE) { in QueryTaskConfig()
105 } else if (this.queryMode == PASSIVE_QUERY_MODE) { in QueryTaskConfig()
125 if (isFirstQueryInBurst && queryMode == AGGRESSIVE_QUERY_MODE) { in getDelayUntilNextTaskWithoutBackoff()
131 return queryMode == AGGRESSIVE_QUERY_MODE in getDelayUntilNextTaskWithoutBackoff()
140 if (queryMode == AGGRESSIVE_QUERY_MODE) { in getNextExpectUnicastResponse()
150 final int maxTimeBetweenBursts = queryMode == AGGRESSIVE_QUERY_MODE in getNextTimeBetweenBurstsMs()
[all …]
DMdnsSearchOptions.java77 private final int queryMode; field in MdnsSearchOptions
89 int queryMode, in MdnsSearchOptions() argument
100 this.queryMode = queryMode; in MdnsSearchOptions()
131 return queryMode; in getQueryMode()
194 out.writeInt(queryMode); in writeToParcel()
206 private int queryMode = PASSIVE_QUERY_MODE; field in MdnsSearchOptions.Builder
246 public Builder setQueryMode(int queryMode) { in setQueryMode() argument
247 this.queryMode = queryMode; in setQueryMode()
314 queryMode, in build()
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
DContactRecipientAdapter.java80 final int queryMode, final ContactListItemView.HostInterface clivHost) { in ContactRecipientAdapter() argument
81 super(context, preferredMaxResultCount, queryMode); in ContactRecipientAdapter()