Home
last modified time | relevance | path

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

/aosp14/system/core/trusty/confirmationui/fuzz/
H A Dmsg_fuzzer.cpp78 static bool Init(int chan, int dma_buf) { in Init() argument
100 int rc = tipc_send(chan, iov, countof(iov), &shm, 1); in Init()
105 rc = read(chan, &hdr, sizeof(hdr)); in Init()
113 static bool Msg(int chan, const uint8_t* data, size_t size) { in Msg() argument
134 int rc = tipc_send(chan, iov, countof(iov), NULL, 0); in Msg()
139 rc = readv(chan, iov, countof(iov)); in Msg()
156 int chan = *ta.GetRawFd(); in LLVMFuzzerTestOneInput() local
159 bool success = Init(chan, dma_buf); in LLVMFuzzerTestOneInput()
166 success = Msg(chan, data, size); in LLVMFuzzerTestOneInput()
/aosp14/system/core/trusty/apploader/fuzz/
H A Dapp_fuzzer.cpp50 static bool SendLoadMsg(int chan, int dma_buf, size_t dma_buf_size) { in SendLoadMsg() argument
72 int rc = tipc_send(chan, iov, 2, &shm, 1); in SendLoadMsg()
79 rc = read(chan, &resp, sizeof(resp)); in SendLoadMsg()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/
H A DNotificationChannelsTest.java67 list.forEach((chan) -> assertTrue(ALL_CHANNELS.contains(chan.getId()))); in testChannelSetup()
/aosp14/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/
H A DDynamicSystemInstallationService.java504 NotificationChannel chan = new NotificationChannel(NOTIFICATION_CHANNEL_ID, in prepareNotification() local
511 mNM.createNotificationChannel(chan); in prepareNotification()