Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 25 of 197) sorted by relevance

12345678

/packages/services/Telecomm/src/com/android/server/telecom/
DCallerInfoLookupHelper.java47 void onCallerInfoQueryComplete(Uri handle, @Nullable CallerInfo info); in onCallerInfoQueryComplete() argument
48 void onContactPhotoQueryComplete(Uri handle, CallerInfo info); in onContactPhotoQueryComplete() argument
86 public CompletableFuture<Pair<Uri, CallerInfo>> startLookup(final Uri handle) { in startLookup() argument
90 final String number = handle.getSchemeSpecificPart(); in startLookup()
94 callerInfoFuture.complete(new Pair<>(handle, null)); in startLookup()
101 public void onCallerInfoQueryComplete(Uri handle, CallerInfo info) { in startLookup()
103 Log.piiHandle(handle)); in startLookup()
105 callerInfoFuture.complete(new Pair<>(handle, info)); in startLookup()
109 public void onContactPhotoQueryComplete(Uri handle, CallerInfo info) { in startLookup()
115 startLookup(handle, listener); in startLookup()
[all …]
DCallsManager.java399 PhoneAccountHandle handle) {
400 broadcastRegisterIntent(handle);
403 PhoneAccountHandle handle) {
404 broadcastUnregisterIntent(handle);
1172 Uri handle = extras.getParcelable(TelecomManager.EXTRA_INCOMING_CALL_ADDRESS); in processIncomingCallIntent() local
1173 if (handle == null) { in processIncomingCallIntent()
1175 handle = extras.getParcelable(TelephonyManager.EXTRA_INCOMING_NUMBER); in processIncomingCallIntent()
1184 handle, in processIncomingCallIntent()
1265 final String handleScheme = handle.getSchemeSpecificPart(); in processIncomingCallIntent()
1329 Uri handle = extras.getParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE); in addNewUnknownCall() local
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DHandleMap.java39 public int handle = 0; field in HandleMap.Entry
48 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) { in Entry() argument
51 this.handle = handle; in Entry()
57 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance, in Entry() argument
61 this.handle = handle; in Entry()
68 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) { in Entry() argument
71 this.handle = handle; in Entry()
76 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) { in Entry() argument
79 this.handle = handle; in Entry()
100 void addService(int serverIf, int handle, UUID uuid, int serviceType, int instance, in addService() argument
[all …]
DGattService.java294 private boolean permissionCheck(int connId, int handle) { in permissionCheck() argument
296 if (restrictedHandles == null || !restrictedHandles.contains(handle)) { in permissionCheck()
304 private boolean permissionCheck(ClientMap.App app, int connId, int handle) { in permissionCheck() argument
306 if (restrictedHandles == null || !restrictedHandles.contains(handle)) { in permissionCheck()
585 public void readCharacteristic(int clientIf, String address, int handle, int authReq) { in readCharacteristic() argument
590 service.readCharacteristic(clientIf, address, handle, authReq); in readCharacteristic()
605 public void writeCharacteristic(int clientIf, String address, int handle, int writeType, in writeCharacteristic() argument
611 service.writeCharacteristic(clientIf, address, handle, writeType, authReq, value); in writeCharacteristic()
615 public void readDescriptor(int clientIf, String address, int handle, int authReq) { in readDescriptor() argument
620 service.readDescriptor(clientIf, address, handle, authReq); in readDescriptor()
[all …]
/packages/apps/Dialer/java/com/android/dialer/notification/
DVoicemailChannelUtils.java60 for (PhoneAccountHandle handle : getAllEligableAccounts(context)) { in getAllChannelIds()
61 result.add(getChannelIdForAccount(handle)); in getAllChannelIds()
75 for (PhoneAccountHandle handle : getAllEligableAccounts(context)) { in createAllChannels()
76 createVoicemailChannelForAccount(context, handle); in createAllChannels()
82 static String getChannelId(@NonNull Context context, @Nullable PhoneAccountHandle handle) { in getChannelId() argument
94 if (handle == null) { in getChannelId()
102 if (!isChannelAllowedForAccount(context, handle)) { in getChannelId()
110 String channelId = getChannelIdForAccount(handle); in getChannelId()
115 createVoicemailChannelForAccount(context, handle); in getChannelId()
125 private static String getChannelIdForAccount(@NonNull PhoneAccountHandle handle) { in getChannelIdForAccount() argument
[all …]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DNewOutgoingCallIntentBroadcasterTest.java125 Uri handle = Uri.parse("tel:6505551234"); in testSelfManagedCall() local
126 Intent selfManagedCallIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testSelfManagedCall()
179 private void badCallActionHelper(Uri handle, int expectedCode) { in badCallActionHelper() argument
180 Intent intent = new Intent(Intent.ACTION_ALARM_CHANGED, handle); in badCallActionHelper()
192 Uri handle = Uri.parse("tel:6505551234"); in testAlreadyDisconnectedCall() local
194 Intent callIntent = buildIntent(handle, Intent.ACTION_CALL, null); in testAlreadyDisconnectedCall()
207 Uri handle = Uri.parse("tel:"); in testNoNumberSupplied() local
208 Intent intent = new Intent(Intent.ACTION_CALL, handle); in testNoNumberSupplied()
220 Uri handle = Uri.parse("tel:6505551911"); in testEmergencyCallWithNonDefaultDialer() local
222 .isPotentialEmergencyNumber(eq(handle.getSchemeSpecificPart())); in testEmergencyCallWithNonDefaultDialer()
[all …]
/packages/modules/DnsResolver/
Dres_debug.cpp142 static void do_section(ns_msg* handle, ns_sect section) { in do_section() argument
152 if (ns_parserr(handle, section, rrnum, &rr)) { in do_section()
158 int opcode = ns_msg_getflag(*handle, ns_f_opcode); in do_section()
213 n = ns_sprintrr(handle, &rr, NULL, NULL, buf.get(), (uint32_t)buflen); in do_section()
242 ns_msg handle; in res_pquery() local
246 if (ns_initparse(msg, len, &handle) < 0) { in res_pquery()
250 opcode = ns_msg_getflag(handle, ns_f_opcode); in res_pquery()
251 rcode = ns_msg_getflag(handle, ns_f_rcode); in res_pquery()
252 id = ns_msg_id(handle); in res_pquery()
253 qdcount = ns_msg_count(handle, ns_s_qd); in res_pquery()
[all …]
/packages/services/Car/service/src/com/android/car/trust/
DCarTrustAgentEnrollmentService.java250 long handle = pair.getKey(); in terminateEnrollmentHandshake() local
251 int uid = mTrustedDeviceService.getSharedPrefs().getInt(String.valueOf(handle), -1); in terminateEnrollmentHandshake()
252 removeEscrowToken(handle, uid); in terminateEnrollmentHandshake()
267 public boolean isEscrowTokenActive(long handle, int uid) { in isEscrowTokenActive() argument
269 if (mTokenActiveStateMap.get(handle) != null) { in isEscrowTokenActive()
270 return mTokenActiveStateMap.get(handle); in isEscrowTokenActive()
283 public void removeEscrowToken(long handle, int uid) { in removeEscrowToken() argument
285 mEnrollmentDelegate.removeEscrowToken(handle, uid); in removeEscrowToken()
286 addEnrollmentServiceLog("removeEscrowToken (handle:" + handle + " uid:" + uid + ")"); in removeEscrowToken()
396 void onEscrowTokenAdded(byte[] token, long handle, int uid) { in onEscrowTokenAdded() argument
[all …]
DCarBleTrustAgent.java150 public void onEscrowTokenRemoved(long handle, boolean successful) { in onEscrowTokenRemoved() argument
152 Log.d(TAG, "onEscrowTokenRemoved handle: " + Long.toHexString(handle)); in onEscrowTokenRemoved()
158 mCarTrustAgentEnrollmentService.onEscrowTokenRemoved(handle, in onEscrowTokenRemoved()
164 public void onEscrowTokenStateReceived(long handle, int tokenState) { in onEscrowTokenStateReceived() argument
166 Log.d(TAG, "onEscrowTokenStateReceived: " + Long.toHexString(handle) + " state: " in onEscrowTokenStateReceived()
172 mCarTrustAgentEnrollmentService.onEscrowTokenActiveStateChanged(handle, in onEscrowTokenStateReceived()
177 public void onEscrowTokenAdded(byte[] token, long handle, UserHandle user) { in onEscrowTokenAdded() argument
179 Log.d(TAG, "onEscrowTokenAdded handle: " + Long.toHexString(handle) + " token: " in onEscrowTokenAdded()
185 mCarTrustAgentEnrollmentService.onEscrowTokenAdded(token, handle, user.getIdentifier()); in onEscrowTokenAdded()
216 private void unlockUserInternally(int uid, byte[] token, long handle) { in unlockUserInternally() argument
[all …]
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DVisualVoicemailNotifier.java103 PhoneAccountHandle handle = getAccountForCall(context, newCalls.get(0)); in showNotifications() local
104 groupSummary.setChannelId(NotificationChannelManager.getVoicemailChannelId(context, handle)); in showNotifications()
157 PhoneAccountHandle handle = getAccountForCall(context, voicemail); in createNotificationForVoicemail() local
168 .setSound(getVoicemailRingtoneUri(context, handle)) in createNotificationForVoicemail()
169 .setDefaults(getNotificationDefaultFlags(context, handle)); in createNotificationForVoicemail()
218 builder.setChannelId(NotificationChannelManager.getVoicemailChannelId(context, handle)); in createNotificationForVoicemail()
234 @NonNull Context context, @Nullable PhoneAccountHandle handle) { in getVoicemailRingtoneUri() argument
235 if (handle == null) { in getVoicemailRingtoneUri()
237 handle = getFallbackAccount(context); in getVoicemailRingtoneUri()
238 if (handle == null) { in getVoicemailRingtoneUri()
[all …]
DLegacyVoicemailNotifier.java57 @NonNull PhoneAccountHandle handle, in showNotification() argument
64 Assert.isNotNull(handle); in showNotification()
68 context.getSystemService(TelephonyManager.class).createForPhoneAccountHandle(handle); in showNotification()
78 handle, in showNotification()
85 context, getNotificationTag(context, handle), NOTIFICATION_ID, notification); in showNotification()
92 @NonNull PhoneAccountHandle handle, in createNotification() argument
113 contentText = getNotificationText(context, handle, voicemailNumber); in createNotification()
128 .setSound(pinnedTelephonyManager.getVoicemailRingtoneUri(handle)) in createNotification()
131 .setChannelId(NotificationChannelManager.getVoicemailChannelId(context, handle)) in createNotification()
134 context, handle)); in createNotification()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DMissedCallNotifierImpl.java240 String handle = handleUri == null ? null : handleUri.getSchemeSpecificPart(); in sendNotificationThroughDefaultDialer() local
242 if (!TextUtils.isEmpty(handle) && !TextUtils.equals(handle, in sendNotificationThroughDefaultDialer()
341 String handle = callInfo.getHandleSchemeSpecificPart(); in showMissedCallNotification() local
345 Log.d(this, "Add actions with number %s.", Log.piiHandle(handle)); in showMissedCallNotification()
347 if (!TextUtils.isEmpty(handle) in showMissedCallNotification()
348 && !TextUtils.equals(handle, mContext.getString(R.string.handle_restricted))) { in showMissedCallNotification()
372 Log.d(this, "Suppress actions. handle: %s, missedCalls: %d.", Log.piiHandle(handle), in showMissedCallNotification()
414 String handle = callInfo.getHandleSchemeSpecificPart(); in getNameForMissedCallNotification() local
417 if (!TextUtils.isEmpty(handle)) { in getNameForMissedCallNotification()
418 String formattedNumber = PhoneNumberUtils.formatNumber(handle, in getNameForMissedCallNotification()
[all …]
DDisconnectedCallNotifier.java76 public final Uri handle; field in DisconnectedCallNotifier.CallInfo
83 public CallInfo(UserHandle userHandle, Uri handle, long endTimeMs, Bitmap callerInfoIcon, in CallInfo() argument
86 this.handle = handle; in CallInfo()
98 ", handle=" + handle + in toString()
208 String handle = call.handle != null ? call.handle.getSchemeSpecificPart() : null; in showDisconnectedNotification() local
210 if (!TextUtils.isEmpty(handle) in showDisconnectedNotification()
211 && !TextUtils.equals(handle, mContext.getString(R.string.handle_restricted)) in showDisconnectedNotification()
217 createCallBackPendingIntent(call.handle, call.userHandle)).build()); in showDisconnectedNotification()
224 createSendSmsFromNotificationPendingIntent(call.handle, in showDisconnectedNotification()
239 Log.i(this, "Adding missed call notification for %s.", Log.pii(call.handle)); in showDisconnectedNotification()
[all …]
/packages/apps/Bluetooth/jni/
Dcom_android_bluetooth_sdp.cpp260 int handle = -1; in sdpCreateMapMasRecordNative() local
261 int ret = sBluetoothSdpInterface->create_sdp_record(&record, &handle); in sdpCreateMapMasRecordNative()
265 ALOGD("SDP Create record success - handle: %d", handle); in sdpCreateMapMasRecordNative()
269 return handle; in sdpCreateMapMasRecordNative()
297 int handle = -1; in sdpCreateMapMnsRecordNative() local
298 int ret = sBluetoothSdpInterface->create_sdp_record(&record, &handle); in sdpCreateMapMnsRecordNative()
302 ALOGD("SDP Create record success - handle: %d", handle); in sdpCreateMapMnsRecordNative()
306 return handle; in sdpCreateMapMnsRecordNative()
328 int handle = -1; in sdpCreatePbapPceRecordNative() local
329 int ret = sBluetoothSdpInterface->create_sdp_record(&record, &handle); in sdpCreatePbapPceRecordNative()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapContentObserver.java595 public long handle; field in BluetoothMapContentObserver.Event
626 Event(String eventType, long handle, String folder, String oldFolder, TYPE msgType) { in Event() argument
628 this.handle = handle; in Event()
642 Event(String eventType, long handle, String folder, TYPE msgType) { in Event() argument
644 this.handle = handle; in Event()
650 Event(String eventType, long handle, String folder, TYPE msgType, String datetime, in Event() argument
653 this.handle = handle; in Event()
667 Event(String eventType, long handle, String folder, TYPE msgType, String datetime, in Event() argument
671 this.handle = handle; in Event()
742 BluetoothMapUtils.getMapHandle(handle, msgType)); in encode()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/
DCallRedirectionProcessorHelper.java128 protected Uri formatNumberForRedirection(Uri handle) { in formatNumberForRedirection() argument
129 return removePostDialDigits(formatNumberToE164(handle)); in formatNumberForRedirection()
137 public String getPostDialDigits(Uri handle) { in getPostDialDigits() argument
138 if (handle == null) { in getPostDialDigits()
141 return PhoneNumberUtils.extractPostDialPortion(handle.getSchemeSpecificPart()); in getPostDialDigits()
144 protected Uri formatNumberToE164(Uri handle) { in formatNumberToE164() argument
145 String number = handle.getSchemeSpecificPart(); in formatNumberToE164()
156 return handle; in formatNumberToE164()
158 return Uri.fromParts(handle.getScheme(), number, null); in formatNumberToE164()
162 protected Uri removePostDialDigits(Uri handle) { in removePostDialDigits() argument
[all …]
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DCallNotificationReceiver.java84 public static void sendIncomingCallIntent(Context context, Uri handle, int videoState) { in sendIncomingCallIntent() argument
93 if (handle != null) { in sendIncomingCallIntent()
94 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle); in sendIncomingCallIntent()
100 public static void sendIncomingRttCallIntent(Context context, Uri handle, int videoState) { in sendIncomingRttCallIntent() argument
109 if (handle != null) { in sendIncomingRttCallIntent()
110 extras.putParcelable(TestConnectionService.EXTRA_HANDLE, handle); in sendIncomingRttCallIntent()
117 public static void addNewUnknownCall(Context context, Uri handle, Bundle extras) { in addNewUnknownCall() argument
118 Log.i(TAG, "Adding new unknown call with handle " + handle); in addNewUnknownCall()
127 if (handle != null) { in addNewUnknownCall()
128 extras.putParcelable(TelecomManager.EXTRA_UNKNOWN_CALL_HANDLE, handle); in addNewUnknownCall()
[all …]
/packages/apps/Car/CompanionDeviceSupport/src/com/android/car/companiondevicesupport/feature/trust/
DTrustedDeviceAgentService.java67 public void onEscrowTokenAdded(byte[] token, long handle, UserHandle user) { in onEscrowTokenAdded() argument
68 super.onEscrowTokenAdded(token, handle, user); in onEscrowTokenAdded()
70 mTrustedDeviceManager.onEscrowTokenAdded(user.getIdentifier(), handle); in onEscrowTokenAdded() local
77 public void onEscrowTokenStateReceived(long handle, int tokenState) { in onEscrowTokenStateReceived() argument
78 super.onEscrowTokenStateReceived(handle, tokenState); in onEscrowTokenStateReceived()
82 handle); in onEscrowTokenStateReceived() local
121 public void unlockUserWithToken(byte[] token, long handle, int userId) {
123 TrustedDeviceAgentService.this.unlockUserWithToken(handle, token,
130 public void removeEscrowToken(long handle, int userId) {
132 TrustedDeviceAgentService.this.removeEscrowToken(handle, UserHandle.of(userId));
/packages/services/Car/evs/sampleDriver/
DEvsV4lCamera.cpp90 alloc.free(rec.handle); in shutdown()
91 rec.handle = nullptr; in shutdown()
238 if (rec.handle == nullptr) { in doneWithFrame()
239 rec.handle = mBuffers[buffer.bufferId].handle; in doneWithFrame()
240 mBuffers[buffer.bufferId].handle = nullptr; in doneWithFrame()
377 if (rec.handle == nullptr) { in increaseAvailableFrames_Locked()
379 rec.handle = memHandle; in increaseAvailableFrames_Locked()
406 if ((rec.inUse == false) && (rec.handle != nullptr)) { in decreaseAvailableFrames_Locked()
408 alloc.free(rec.handle); in decreaseAvailableFrames_Locked()
409 rec.handle = nullptr; in decreaseAvailableFrames_Locked()
[all …]
/packages/services/Car/tools/emulator/
Ddriving_info_generator.py114 … listener.handle(c.VEHICLEPROPERTY_PERF_VEHICLE_SPEED, 0, self.speedInMps, "PERF_VEHICLE_SPEED")
115 listener.handle(c.VEHICLEPROPERTY_ENGINE_RPM, 0, self.rpm, "ENGINE_RPM")
116 listener.handle(c.VEHICLEPROPERTY_PERF_ODOMETER, 0, self.odometerInKm, "PERF_ODOMETER")
117 listener.handle(c.VEHICLEPROPERTY_CURRENT_GEAR, 0, self.currentGear, "CURRENT_GEAR")
118 listener.handle(c.VEHICLEPROPERTY_OBD2_LIVE_FRAME, 0,
182 listener.handle(c.VEHICLEPROPERTY_GEAR_SELECTION, 0, c.VEHICLEGEAR_GEAR_REVERSE,
184 listener.handle(c.VEHICLEPROPERTY_CURRENT_GEAR, 0, c.VEHICLEGEAR_GEAR_REVERSE,
199 listener.handle(c.VEHICLEPROPERTY_GEAR_SELECTION, 0, c.VEHICLEGEAR_GEAR_PARK,
201 listener.handle(c.VEHICLEPROPERTY_CURRENT_GEAR, 0, c.VEHICLEGEAR_GEAR_PARK,
223 listener.handle(c.VEHICLEPROPERTY_GEAR_SELECTION, 0, c.VEHICLEGEAR_GEAR_DRIVE,
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java1142 boolean isVideoPauseSupported(PhoneAccountHandle handle) { in isVideoPauseSupported() argument
1145 if (entry.getPhoneAccountHandle().equals(handle)) { in isVideoPauseSupported()
1160 boolean isMergeCallSupported(PhoneAccountHandle handle) { in isMergeCallSupported() argument
1163 if (entry.getPhoneAccountHandle().equals(handle)) { in isMergeCallSupported()
1178 boolean isVideoConferencingSupported(PhoneAccountHandle handle) { in isVideoConferencingSupported() argument
1181 if (entry.getPhoneAccountHandle().equals(handle)) { in isVideoConferencingSupported()
1196 boolean isMergeOfWifiCallsAllowedWhenVoWifiOff(final PhoneAccountHandle handle) { in isMergeOfWifiCallsAllowedWhenVoWifiOff() argument
1199 entry -> entry.getPhoneAccountHandle().equals(handle)).findFirst(); in isMergeOfWifiCallsAllowedWhenVoWifiOff()
1216 boolean isMergeImsCallSupported(PhoneAccountHandle handle) { in isMergeImsCallSupported() argument
1219 if (entry.getPhoneAccountHandle().equals(handle)) { in isMergeImsCallSupported()
[all …]
DPstnIncomingCallNotifier.java249 PhoneAccountHandle handle = findCorrectPhoneAccountHandle(); in addNewUnknownCall() local
250 if (handle == null) { in addNewUnknownCall()
258 tm.addNewUnknownCall(handle, extras); in addNewUnknownCall()
285 PhoneAccountHandle handle = findCorrectPhoneAccountHandle(); in sendIncomingCallIntent() local
286 if (handle == null) { in sendIncomingCallIntent()
295 tm.addNewIncomingConference(handle, extras); in sendIncomingCallIntent()
297 tm.addNewIncomingCall(handle, extras); in sendIncomingCallIntent()
312 PhoneAccountHandle handle = PhoneUtils.makePstnPhoneAccountHandle(mPhone); in findCorrectPhoneAccountHandle() local
313 if (telecomAccountRegistry.hasAccountEntryForPhoneAccount(handle)) { in findCorrectPhoneAccountHandle()
314 return handle; in findCorrectPhoneAccountHandle()
/packages/services/Car/car-lib/src/android/car/trust/
DCarTrustAgentEnrollmentManager.java193 public boolean isEscrowTokenActive(long handle, int uid) { in isEscrowTokenActive() argument
195 return mEnrollmentService.isEscrowTokenActive(handle, uid); in isEscrowTokenActive()
208 public void removeEscrowToken(long handle, int uid) { in removeEscrowToken() argument
210 mEnrollmentService.removeEscrowToken(handle, uid); in removeEscrowToken()
392 void onEscrowTokenAdded(long handle); in onEscrowTokenAdded() argument
401 void onEscrowTokenRemoved(long handle); in onEscrowTokenRemoved() argument
410 void onEscrowTokenActiveStateChanged(long handle, boolean active); in onEscrowTokenActiveStateChanged() argument
481 public void onEscrowTokenAdded(long handle) { in onEscrowTokenAdded() argument
489 data.putLong(KEY_HANDLE, handle); in onEscrowTokenAdded()
498 public void onEscrowTokenRemoved(long handle) { in onEscrowTokenRemoved() argument
[all …]
/packages/apps/Car/Settings/src/com/android/car/settings/security/
DTrustedDeviceListPreferenceController.java65 public void onEscrowTokenAdded(long handle) {
69 public void onEscrowTokenRemoved(long handle) {
74 public void onEscrowTokenActiveStateChanged(long handle, boolean active) {
84 public void onConfirmRemoveDevice(long handle) {
85 mCarTrustAgentEnrollmentManager.removeEscrowToken(handle,
179 private Preference createTrustedDevicePreference(String deviceName, long handle) { in createTrustedDevicePreference() argument
183 preference.setKey(String.valueOf(handle)); in createTrustedDevicePreference()
186 handle); in createTrustedDevicePreference()
/packages/apps/Nfc/nci/jni/
DPeerToPeer.cpp1249 eventData->activated.handle); in nfaServerCallback()
1255 eventData->activated.handle); in nfaServerCallback()
1303 eventData->disc.handle, eventData->disc.reason); in nfaServerCallback()
1305 if ((pConn = sP2p.findConnection(eventData->disc.handle)) == NULL) { in nfaServerCallback()
1308 eventData->disc.handle); in nfaServerCallback()
1342 if ((pConn = sP2p.findConnection(eventData->data.handle)) == NULL) { in nfaServerCallback()
1345 eventData->data.handle); in nfaServerCallback()
1349 eventData->data.handle, eventData->data.remote_sap); in nfaServerCallback()
1357 if ((pConn = sP2p.findConnection(eventData->congest.handle)) == NULL) { in nfaServerCallback()
1360 fn, eventData->congest.handle); in nfaServerCallback()
[all …]

12345678