/aosp_15_r20/external/rust/android-crates-io/crates/tokio/tests/ |
D | sync_notify.rs | 7 use tokio::sync::Notify; 13 impl AssertSend for Notify {} implementation 17 let notify = Notify::new(); in notify_notified_one() localVariable 18 let mut notified = spawn(async { notify.notified().await }); in notify_notified_one() 20 notify.notify_one(); in notify_notified_one() 26 let notify = Notify::new(); in notify_multi_notified_one() localVariable 27 let mut notified1 = spawn(async { notify.notified().await }); in notify_multi_notified_one() 28 let mut notified2 = spawn(async { notify.notified().await }); in notify_multi_notified_one() 35 notify.notify_one(); in notify_multi_notified_one() 42 let notify = Notify::new(); in notify_multi_notified_last() localVariable [all …]
|
/aosp_15_r20/hardware/interfaces/radio/1.0/vts/functional/ |
H A D | radio_response.cpp | 27 parent.notify(info.serial); in getIccCardStatusResponse() 34 parent.notify(info.serial); in supplyIccPinForAppResponse() 41 parent.notify(info.serial); in supplyIccPukForAppResponse() 48 parent.notify(info.serial); in supplyIccPin2ForAppResponse() 55 parent.notify(info.serial); in supplyIccPuk2ForAppResponse() 62 parent.notify(info.serial); in changeIccPinForAppResponse() 69 parent.notify(info.serial); in changeIccPin2ForAppResponse() 76 parent.notify(info.serial); in supplyNetworkDepersonalizationResponse() 83 parent.notify(info.serial); in getCurrentCallsResponse() 89 parent.notify(info.serial); in dialResponse() [all …]
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/drivers/net/netdevsim/ |
H A D | fib_notifications.sh | 84 local notify=$1; shift 89 ip netns exec testns1 sysctl -qw net.$ip.fib_notify_on_flag_change=$notify 114 local notify=0 117 route_addition_check $ip $notify $route $expected_num_notifications 120 notify=1 122 route_addition_check $ip $notify $route $expected_num_notifications 124 # notify=2 means emit notifications only for failed route installation, 127 notify=2 129 route_addition_check $ip $notify $route $expected_num_notifications 137 local notify=$1; shift [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/sync/ |
D | notify.rs | 2 // due to the usage of `Notify` within the `rt` feature set. 27 /// `Notify` provides a basic mechanism to notify a single task of an event. 28 /// `Notify` itself does not carry any data. Instead, it is to be used to signal 31 /// A `Notify` can be thought of as a [`Semaphore`] starting with 0 permits. The 36 /// The synchronization details of `Notify` are similar to 37 /// [`thread::park`][park] and [`Thread::unpark`][unpark] from std. A [`Notify`] 55 /// use tokio::sync::Notify; 60 /// let notify = Arc::new(Notify::new()); 61 /// let notify2 = notify.clone(); 69 /// notify.notify_one(); [all …]
|
/aosp_15_r20/external/coreboot/src/mainboard/getac/p470/acpi/ |
H A D | ec.asl | 89 Notify (\_SB.CP00, 0x80) 97 Notify (\_SB.AC, 0x80) 98 Notify (\_SB.BAT0, 0x80) 104 Notify(\_SB.BAT0, 0x80) // Execute BAT0 _BST 105 Notify(\_SB.BAT1, 0x80) // Execute BAT1 _BST 111 Notify(\_SB.BAT0, 0x00) 112 Notify(\_SB.AC, 0x80) 114 Notify(\_SB.AC, 0x80) 115 Notify(\_SB.BAT0, 0x01) 119 Notify(\_SB.BAT0, 0x80) // Execute BAT0 _BST [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/sync/tests/ |
D | loom_notify.rs | 1 use crate::sync::Notify; 15 let tx = Arc::new(Notify::new()); in notify_one() 32 let notify = Arc::new(Notify::new()); in notify_waiters() localVariable 33 let tx = notify.clone(); in notify_waiters() 34 let notified1 = notify.notified(); in notify_waiters() 35 let notified2 = notify.notified(); in notify_waiters() 53 let notify = Arc::new(Notify::new()); in notify_waiters_and_one() localVariable 54 let tx1 = notify.clone(); in notify_waiters_and_one() 55 let tx2 = notify.clone(); in notify_waiters_and_one() 66 let notified = notify.notified(); in notify_waiters_and_one() [all …]
|
D | notify.rs | 1 use crate::sync::Notify; 14 let ptr = data as *const Notify; in notify_clones_waker_before_lock() constant 15 Arc::<Notify>::increment_strong_count(ptr); in notify_clones_waker_before_lock() 17 // Notify wait list is locked. in notify_clones_waker_before_lock() 23 drop(Arc::<Notify>::from_raw(data as *const Notify)); in notify_clones_waker_before_lock() constant 34 let notify = Arc::new(Notify::new()); in notify_clones_waker_before_lock() localVariable 35 let notify2 = notify.clone(); in notify_clones_waker_before_lock() 41 let future = notify.notified(); in notify_clones_waker_before_lock() 53 let notify = Arc::new(Notify::new()); in notify_waiters_handles_panicking_waker() localVariable 55 struct PanickingWaker(#[allow(dead_code)] Arc<Notify>); in notify_waiters_handles_panicking_waker() [all …]
|
/aosp_15_r20/hardware/interfaces/radio/aidl/vts/ |
H A D | radio_network_response.cpp | 29 parent_network.notify(info.serial); in getAllowedNetworkTypesBitmapResponse() 37 parent_network.notify(info.serial); in getAvailableBandModesResponse() 45 parent_network.notify(info.serial); in getAvailableNetworksResponse() 55 parent_network.notify(info.serial); in getBarringInfoResponse() 62 parent_network.notify(info.serial); in getCdmaRoamingPreferenceResponse() 69 parent_network.notify(info.serial); in getCellInfoListResponse() 77 parent_network.notify(info.serial); in getDataRegistrationStateResponse() 84 parent_network.notify(info.serial); in getImsRegistrationStateResponse() 91 parent_network.notify(info.serial); in getNetworkSelectionModeResponse() 100 parent_network.notify(info.serial); in getOperatorResponse() [all …]
|
H A D | radio_voice_response.cpp | 23 parent_voice.notify(info.serial); in acceptCallResponse() 33 parent_voice.notify(info.serial); in cancelPendingUssdResponse() 39 parent_voice.notify(info.serial); in conferenceResponse() 45 parent_voice.notify(info.serial); in dialResponse() 51 parent_voice.notify(info.serial); in emergencyDialResponse() 58 parent_voice.notify(info.serial); in exitEmergencyCallbackModeResponse() 64 parent_voice.notify(info.serial); in explicitCallTransferResponse() 71 parent_voice.notify(info.serial); in getCallForwardStatusResponse() 79 parent_voice.notify(info.serial); in getCallWaitingResponse() 86 parent_voice.notify(info.serial); in getClipResponse() [all …]
|
H A D | radio_sim_response.cpp | 29 parent_sim.notify(info.serial); in areUiccApplicationsEnabledResponse() 36 parent_sim.notify(info.serial); in changeIccPin2ForAppResponse() 43 parent_sim.notify(info.serial); in changeIccPinForAppResponse() 49 parent_sim.notify(info.serial); in enableUiccApplicationsResponse() 59 parent_sim.notify(info.serial); in getAllowedCarriersResponse() 67 parent_sim.notify(info.serial); in getCdmaSubscriptionResponse() 74 parent_sim.notify(info.serial); in getCdmaSubscriptionSourceResponse() 81 parent_sim.notify(info.serial); in getFacilityLockForAppResponse() 89 parent_sim.notify(info.serial); in getIccCardStatusResponse() 97 parent_sim.notify(info.serial); in getImsiForAppResponse() [all …]
|
/aosp_15_r20/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
H A D | NotificationTestList.java | 124 mNM.notify(7001, n); 136 mNM.notify("default", 7004, n); 154 mNM.notify("default", 7004, n); 171 mNM.notify(6000, n); 177 mNM.notify(6001, n); 186 mNM.notify(6002, n); 193 mNM.notify(6003, n); 204 mNM.notify(6100, n); 210 mNM.notify(6101, n); 216 mNM.notify(6102, n); [all …]
|
/aosp_15_r20/out/soong/raw-aosp_shiba/ab/ |
D | ab65799584ea4ce14928e2ff6fa0767238e7b86b | 99 …/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/android_common/javac… 100 …/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/android_common/javac… 127 …notify-startup/art-run-test-1002-notify-startup/android_common/lint-srcs.list.rsp __SBOX_SANDBOX_D… 130 …to: "out/soong/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/androi… 134 …to: "out/soong/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/androi… 138 …to: "out/soong/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/androi… 142 …to: "out/soong/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/androi… 146 …to: "out/soong/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/androi… 150 …to: "out/soong/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/androi… 154 …file: "out/soong/.intermediates/art/test/1002-notify-startup/art-run-test-1002-notify-startup/andr… [all …]
|
/aosp_15_r20/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/metrics/ |
D | PhotoPickerUiEventLogger.java | 187 * Log metrics to notify that the picker has opened in unknown profile 211 * Log metrics to notify that the picker has opened in half screen 226 * Log metrics to notify that the picker has opened in full screen 241 * Log metrics to notify that the picker has opened in single select mode 256 * Log metrics to notify that the picker has opened in multi select mode 271 * Log metrics to notify that the picker has opened with the filter to show all images 286 * Log metrics to notify that the picker has opened with the filter to show all videos 301 * Log metrics to notify that the picker has opened with a specific filter, other than the ones 317 * Log metrics to notify that user has clicked on "Browse..." in Photo picker overflow menu. 330 * Log metrics to notify that user has confirmed selection in personal profile [all …]
|
/aosp_15_r20/trusty/kernel/app/uirqtest/ |
H A D | uevt_test.c | 241 EXPECT_EQ(0, rc, "notify event signaled"); in TEST_F() 251 /* notify that event is handled to put source into handled state */ in TEST_F() 253 EXPECT_EQ(0, rc, "notify event handled"); in TEST_F() 277 ASSERT_EQ(0, rc, "notify event signaled"); in TEST_F() 291 ASSERT_EQ(0, rc, "notify event handled"); in TEST_F() 294 ASSERT_EQ(0, rc, "notify event signaled"); in TEST_F() 358 ASSERT_EQ(0, rc, "notify event signaled"); in TEST_F() 374 ASSERT_EQ(0, rc, "notify event signaled"); in TEST_F() 379 ASSERT_EQ(0, rc, "notify event handled"); in TEST_F() 383 ASSERT_EQ(0, rc, "notify event handled"); in TEST_F() [all …]
|
/aosp_15_r20/frameworks/base/proto/src/ |
H A D | system_messages.proto | 34 // Notify the user that a screenshot was captured. 54 // Notify the user of a problem with a plugin (dev devices only). 58 // Notify the user that instant app is running. 62 // Notify the user that they should select an input method 66 // Notify the user about limited functionality before decryption 86 // Notify the user that tethering is active. 92 // Notify the user that always-on VPN has disconnected. 96 // Notify the user about a sync error. 199 // Notify the user that carrier wifi networks are available. 215 // Notify the user that their softap config preference has changed. [all …]
|
/aosp_15_r20/external/python/cpython2/PC/bdist_wininst/ |
D | extract.c | 29 BOOL ensure_directory(char *pathname, char *new_part, NOTIFYPROC notify) in ensure_directory() argument 37 if (!CreateDirectory(pathname, NULL) && notify) in ensure_directory() 38 notify(SYSTEM_ERROR, in ensure_directory() 41 notify(DIR_CREATED, pathname); in ensure_directory() 47 if (notify) in ensure_directory() 48 notify(SYSTEM_ERROR, in ensure_directory() 63 NOTIFYPROC notify) in map_new_file() argument 81 if (notify && notify(CAN_OVERWRITE, filename)) in map_new_file() 89 if (notify) in map_new_file() 90 notify(FILE_OVERWRITTEN, filename); in map_new_file() [all …]
|
/aosp_15_r20/frameworks/av/media/libstagefright/rtsp/ |
H A D | ARTPSource.cpp | 46 const sp<AMessage> ¬ify) in ARTPSource() argument 74 mNotify(notify) { in ARTPSource() 81 mAssembler = new AAVCAssembler(notify); in ARTPSource() 84 mAssembler = new AHEVCAssembler(notify); in ARTPSource() 87 mAssembler = new AMPEG4AudioAssembler(notify, params); in ARTPSource() 90 mAssembler = new AH263Assembler(notify); in ARTPSource() 93 mAssembler = new AAMRAssembler(notify, false /* isWide */, params); in ARTPSource() 95 mAssembler = new AAMRAssembler(notify, true /* isWide */, params); in ARTPSource() 98 mAssembler = new AMPEG4ElementaryAssembler(notify, desc, params); in ARTPSource() 101 mAssembler = new ARawAudioAssembler(notify, desc.c_str(), params); in ARTPSource() [all …]
|
/aosp_15_r20/external/libcups/test/ |
H A D | 4.4-subscription-ops.test | 26 ATTR uri notify-recipient-uri testnotify:// 27 ATTR keyword notify-events printer-state-changed 28 ATTR integer notify-lease-duration 5 36 EXPECT notify-subscription-id 37 DISPLAY notify-subscription-id 55 ATTR integer notify-subscription-id $notify-subscription-id 81 ATTR uri notify-recipient-uri testnotify:// 82 ATTR keyword notify-events printer-state-changed 83 ATTR integer notify-lease-duration 5 86 ATTR uri notify-recipient-uri testnotify:// [all …]
|
/aosp_15_r20/external/cronet/base/ |
H A D | callback_list_unittest.cc | 134 c1.Notify(1); in TEST() 141 c2.Notify(1, 2); in TEST() 148 c3.Notify(1, 2, 3); in TEST() 155 c4.Notify(1, 2, 3, 4); in TEST() 162 c5.Notify(1, 2, 3, 4, 5); in TEST() 169 c6.Notify(1, 2, 3, 4, 5, 6); in TEST() 188 cb_reg.Notify(); in TEST() 199 cb_reg.Notify(); in TEST() 219 cb_reg.Notify(); in TEST() 224 // OnceCallbacks should auto-remove themselves after calling Notify(). in TEST() [all …]
|
/aosp_15_r20/hardware/interfaces/wifi/aidl/vts/functional/ |
H A D | wifi_nan_iface_aidl_test.cpp | 132 inline void notify(CallbackType callbackType) { in notify() function in WifiNanIfaceAidlTest 163 parent_.notify(EVENT_CLUSTER_EVENT); in eventClusterEvent() 168 parent_.notify(EVENT_DATA_PATH_CONFIRM); in eventDataPathConfirm() 173 parent_.notify(EVENT_DATA_PATH_REQUEST); in eventDataPathRequest() 179 parent_.notify(EVENT_DATA_PATH_SCHEDULE_UPDATE); in eventDataPathScheduleUpdate() 184 parent_.notify(EVENT_DATA_PATH_TERMINATED); in eventDataPathTerminated() 189 parent_.notify(EVENT_DISABLED); in eventDisabled() 194 parent_.notify(EVENT_FOLLOWUP_RECEIVED); in eventFollowupReceived() 199 parent_.notify(EVENT_MATCH); in eventMatch() 205 parent_.notify(EVENT_MATCH_EXPIRED); in eventMatchExpired() [all …]
|
/aosp_15_r20/frameworks/av/media/libmediaplayerservice/nuplayer/ |
H A D | HTTPLiveSource.cpp | 41 const sp<AMessage> ¬ify, in HTTPLiveSource() argument 45 : Source(notify), in HTTPLiveSource() 110 sp<AMessage> notify = new AMessage(kWhatSessionNotify, this); in prepareAsync() local 113 notify, in prepareAsync() 262 sp<AMessage> notify = dupNotify(); in pollForRawData() local 263 notify->setInt32("what", pushWhat); in pollForRawData() 264 notify->setBuffer("buffer", buffer); in pollForRawData() 272 notify->post(); in pollForRawData() 279 notify->post(); in pollForRawData() 336 // notify the current size here if we have it, otherwise report an initial size of (0,0) in onSessionNotify() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-contact-center-insights/proto-google-cloud-contact-center-insights-v1/src/main/java/com/google/cloud/contactcenterinsights/v1/ |
H A D | SettingsOrBuilder.java | 209 * specified trigger occurs, Insights will notify the corresponding Pub/Sub 212 * * "all-triggers": Notify each time any of the supported triggers occurs. 213 * * "create-analysis": Notify each time an analysis is created. 214 * * "create-conversation": Notify each time a conversation is created. 215 * * "export-insights-data": Notify each time an export is complete. 216 * * "update-conversation": Notify each time a conversation is updated via 230 * specified trigger occurs, Insights will notify the corresponding Pub/Sub 233 * * "all-triggers": Notify each time any of the supported triggers occurs. 234 * * "create-analysis": Notify each time an analysis is created. 235 * * "create-conversation": Notify each time a conversation is created. [all …]
|
/aosp_15_r20/external/coreboot/src/ec/google/chromeec/acpi/ |
H A D | ec.asl | 5 * state notifications and Notify CPU device objects to 173 * Call PNOT (Platform Notify) to inform platform code 241 Notify (LID0, 0x80) 256 Notify (CREC, 0x2) 258 Notify (LID0, 0x80) 275 Notify (AC, 0x80) 278 Notify (\_SB.DPTF.TCHG, 0x80) 282 * Call PNOT (Platform Notify) to inform platform code 295 Notify (AC, 0x80) 298 Notify (\_SB.DPTF.TCHG, 0x80) [all …]
|
/aosp_15_r20/hardware/interfaces/radio/1.5/vts/functional/ |
H A D | radio_response.cpp | 82 parent_v1_5.notify(info.serial); in hangupConnectionResponse() 215 parent_v1_5.notify(info.serial); in deactivateDataCallResponse() 326 parent_v1_5.notify(info.serial); in getAvailableBandModesResponse() 540 parent_v1_5.notify(info.serial); in setInitialAttachApnResponse() 613 parent_v1_5.notify(info.serial); in setDataProfileResponse() 670 parent_v1_5.notify(info.serial); in setIndicationFilterResponse() 698 parent_v1_5.notify(info.serial); in stopNetworkScanResponse() 715 parent_v1_5.notify(info.serial); in setSignalStrengthReportingCriteriaResponse() 722 parent_v1_5.notify(info.serial); in setLinkCapacityReportingCriteriaResponse() 737 parent_v1_5.notify(info.serial); in getCurrentCallsResponse_1_2() [all …]
|
/aosp_15_r20/external/grpc-grpc/test/cpp/ext/gcp/ |
H A D | environment_autodetect_test.cc | 45 grpc_core::Notification* notify) { in GetNotifiedOnEnvironmentDetection() argument 46 env->NotifyOnDone([notify]() { notify->Notify(); }); in GetNotifiedOnEnvironmentDetection() 57 grpc_core::Notification notify; in TEST_F() local 58 GetNotifiedOnEnvironmentDetection(&env, ¬ify); in TEST_F() 59 notify.WaitForNotification(); in TEST_F() 70 grpc_core::Notification notify; in TEST_F() local 71 GetNotifiedOnEnvironmentDetection(&env, ¬ify); in TEST_F() 72 notify.WaitForNotification(); in TEST_F() 83 grpc_core::Notification notify; in TEST_F() local 84 GetNotifiedOnEnvironmentDetection(&env, ¬ify); in TEST_F() [all …]
|