Home
last modified time | relevance | path

Searched refs:stop (Results 276 - 300 of 3055) sorted by relevance

1...<<11121314151617181920>>...123

/kernel/linux/linux-5.10/drivers/mmc/host/
H A Dusdhi6rol0.c916 (mrq->stop && mrq->stop->error)) in usdhi6_request_done()
922 mrq->stop ? mrq->stop->error : 1); in usdhi6_request_done()
954 if (!mrq->stop) in usdhi6_cmd_flags()
1021 if (mrq->stop) in usdhi6_rq_start()
1068 data->sg->offset, mrq->stop ? " + stop" : ""); in usdhi6_rq_start()
1202 struct mmc_command *cmd = host->mrq->stop; in usdhi6_resp_cmd12()
1342 if (mrq->stop in usdhi6_stop_cmd()
[all...]
/kernel/linux/linux-6.6/drivers/mmc/host/
H A Dusdhi6rol0.c916 (mrq->stop && mrq->stop->error)) in usdhi6_request_done()
922 mrq->stop ? mrq->stop->error : 1); in usdhi6_request_done()
954 if (!mrq->stop) in usdhi6_cmd_flags()
1021 if (mrq->stop) in usdhi6_rq_start()
1068 data->sg->offset, mrq->stop ? " + stop" : ""); in usdhi6_rq_start()
1212 struct mmc_command *cmd = host->mrq->stop; in usdhi6_resp_cmd12()
1352 if (mrq->stop in usdhi6_stop_cmd()
[all...]
/third_party/python/Lib/test/
H A Dtest_tracemalloc.py115 tracemalloc.stop()
157 tracemalloc.stop()
160 tracemalloc.stop()
167 tracemalloc.stop()
194 tracemalloc.stop()
207 tracemalloc.stop()
256 # stop() also resets traced memory counters
257 tracemalloc.stop()
294 tracemalloc.stop()
318 tracemalloc.stop()
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/
H A Dtx.c230 bool *stop) in __mt76_tx_queue_skb()
247 if (stop && pending >= MT_MAX_NON_AQL_PKT) in __mt76_tx_queue_skb()
248 *stop = true; in __mt76_tx_queue_skb()
394 bool stop = false; in mt76_txq_send_burst() local
412 idx = __mt76_tx_queue_skb(dev, qid, skb, wcid, txq->sta, &stop); in mt76_txq_send_burst()
421 if (stop) in mt76_txq_send_burst()
436 idx = __mt76_tx_queue_skb(dev, qid, skb, wcid, txq->sta, &stop); in mt76_txq_send_burst()
228 __mt76_tx_queue_skb(struct mt76_dev *dev, int qid, struct sk_buff *skb, struct mt76_wcid *wcid, struct ieee80211_sta *sta, bool *stop) __mt76_tx_queue_skb() argument
/kernel/linux/linux-5.10/kernel/bpf/
H A Dbpf_iter.c78 * . stop() may call bpf program, handling potential overflow there
115 goto stop; in bpf_seq_read()
118 seq->op->stop(seq, p); in bpf_seq_read()
133 seq->op->stop(seq, p); in bpf_seq_read()
163 seq->op->stop(seq, p); in bpf_seq_read()
178 seq->op->stop(seq, p); in bpf_seq_read()
184 stop: in bpf_seq_read()
187 seq->op->stop(seq, p); in bpf_seq_read()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Ducbuf.cpp208 /* set the callback to stop */ in ucbuf_fillucbuf()
232 int32_t stop =0; in ucbuf_fillucbuf() local
252 stop = pos-len; in ucbuf_fillucbuf()
254 memcpy(preContext,cbuf+start,stop-start); in ucbuf_fillucbuf()
256 preContext[stop-start] = 0; in ucbuf_fillucbuf()
260 stop = (int32_t)(((pos+CONTEXT_LEN)<= (sourceLimit-cbuf) )? (pos+(CONTEXT_LEN-1)) : (sourceLimit-cbuf)); in ucbuf_fillucbuf()
262 memcpy(postContext,source,stop-start); in ucbuf_fillucbuf()
264 postContext[stop-start] = 0; in ucbuf_fillucbuf()
/third_party/icu/icu4c/source/tools/toolutil/
H A Ducbuf.cpp208 /* set the callback to stop */ in ucbuf_fillucbuf()
232 int32_t stop =0; in ucbuf_fillucbuf() local
252 stop = pos-len; in ucbuf_fillucbuf()
254 memcpy(preContext,cbuf+start,stop-start); in ucbuf_fillucbuf()
256 preContext[stop-start] = 0; in ucbuf_fillucbuf()
260 stop = (int32_t)(((pos+CONTEXT_LEN)<= (sourceLimit-cbuf) )? (pos+(CONTEXT_LEN-1)) : (sourceLimit-cbuf)); in ucbuf_fillucbuf()
262 memcpy(postContext,source,stop-start); in ucbuf_fillucbuf()
264 postContext[stop-start] = 0; in ucbuf_fillucbuf()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Ducbuf.cpp208 /* set the callback to stop */ in ucbuf_fillucbuf()
232 int32_t stop =0; in ucbuf_fillucbuf() local
252 stop = pos-len; in ucbuf_fillucbuf()
254 memcpy(preContext,cbuf+start,stop-start); in ucbuf_fillucbuf()
256 preContext[stop-start] = 0; in ucbuf_fillucbuf()
260 stop = (int32_t)(((pos+CONTEXT_LEN)<= (sourceLimit-cbuf) )? (pos+(CONTEXT_LEN-1)) : (sourceLimit-cbuf)); in ucbuf_fillucbuf()
262 memcpy(postContext,source,stop-start); in ucbuf_fillucbuf()
264 postContext[stop-start] = 0; in ucbuf_fillucbuf()
/third_party/python/Modules/
H A Ditertoolsmodule.c1438 long stop; member
1471 lz->stop = 0; in itertools_takewhile_impl()
1500 if (lz->stop == 1) in takewhile_next()
1518 lz->stop = 1; in takewhile_next()
1525 return Py_BuildValue("O(OO)l", Py_TYPE(lz), lz->func, lz->it, lz->stop); in takewhile_reduce()
1531 int stop = PyObject_IsTrue(state); in takewhile_reduce_setstate() local
1533 if (stop < 0) in takewhile_reduce_setstate()
1535 lz->stop = stop; in takewhile_reduce_setstate()
1598 Py_ssize_t stop; member
1609 Py_ssize_t start=0, stop=-1, step=1; islice_new() local
1710 Py_ssize_t stop = lz->stop; islice_next() local
1750 PyObject *stop; islice_reduce() local
[all...]
/foundation/communication/wifi/wifi/relation_services/wifi_hal_service/wifi_hal_module/wpa_supplicant_hal/
H A Dwifi_wpa_hal.c820 LOGE("P2p stop failed."); in StopWpaSuppilicant()
823 LOGE("Sta stop failed."); in StopWpaSuppilicant()
827 LOGE("Sta stop failed."); in StopWpaSuppilicant()
842 LOGE("Ap instance %{public}d stop failed.", stopCount); in StopWpaSoftAp()
/kernel/linux/linux-5.10/tools/testing/selftests/vm/
H A Dmlock2-tests.c25 char *stop; in get_vm_area() local
48 stop = strchr(end_addr, ' '); in get_vm_area()
49 if (!stop) { in get_vm_area()
53 stop = '\0'; in get_vm_area()
/kernel/linux/linux-5.10/net/rxrpc/
H A Dproc.c125 .stop = rxrpc_call_seq_stop,
208 .stop = rxrpc_connection_seq_stop,
334 .stop = rxrpc_peer_seq_stop,
403 .stop = rxrpc_local_seq_stop,
/kernel/linux/linux-5.10/net/core/
H A Dnet-procfs.c185 .stop = dev_seq_stop,
192 .stop = softnet_seq_stop,
312 .stop = ptype_seq_stop,
380 .stop = dev_seq_stop,
/kernel/linux/linux-5.10/drivers/gpu/host1x/hw/
H A Dcdma_hw.c171 bool stop) in cdma_hw_cmdproc_stop()
174 host1x_ch_writel(ch, stop ? 0x1 : 0x0, HOST1X_CHANNEL_CMDPROC_STOP); in cdma_hw_cmdproc_stop()
177 if (stop) in cdma_hw_cmdproc_stop()
269 /* stop processing to get a clean snapshot */ in cdma_timeout_handler()
288 /* stop HW, resetting channel/module */ in cdma_timeout_handler()
319 .stop = cdma_stop,
170 cdma_hw_cmdproc_stop(struct host1x *host, struct host1x_channel *ch, bool stop) cdma_hw_cmdproc_stop() argument
/kernel/linux/linux-6.6/drivers/char/tpm/
H A Dxen-tpmfront.c59 unsigned long stop; in wait_for_tpm_stat() local
69 stop = jiffies + timeout; in wait_for_tpm_stat()
73 timeout = stop - jiffies; in wait_for_tpm_stat()
95 } while (time_before(jiffies, stop)); in wait_for_tpm_stat()
/kernel/linux/linux-6.6/drivers/gpu/host1x/hw/
H A Dcdma_hw.c171 bool stop) in cdma_hw_cmdproc_stop()
174 host1x_ch_writel(ch, stop ? 0x1 : 0x0, HOST1X_CHANNEL_CMDPROC_STOP); in cdma_hw_cmdproc_stop()
177 if (stop) in cdma_hw_cmdproc_stop()
300 /* stop processing to get a clean snapshot */ in cdma_timeout_handler()
319 /* stop HW, resetting channel/module */ in cdma_timeout_handler()
353 .stop = cdma_stop,
170 cdma_hw_cmdproc_stop(struct host1x *host, struct host1x_channel *ch, bool stop) cdma_hw_cmdproc_stop() argument
/third_party/libdrm/tests/amdgpu/
H A Damdgpu_stress.c189 struct timespec start, stop; in submit_ib() local
269 r = clock_gettime(CLOCK_MONOTONIC, &stop); in submit_ib()
273 delta = stop.tv_nsec + stop.tv_sec * 1000000000UL; in submit_ib()
/third_party/skia/third_party/externals/angle2/util/windows/
H A Dtest_utils_win.cpp292 mTimer.stop();
315 mTimer.stop();
321 mTimer.stop();
373 mTimer.stop();
/third_party/skia/gm/
H A Dtexteffects.cpp183 SkScalar* stop = intervals + count; in trim_with_halo() local
185 while (intervals < stop - 1) { in trim_with_halo()
189 int remaining = stop - intervals - 2; in trim_with_halo()
194 stop -= 2; in trim_with_halo()
/third_party/vk-gl-cts/framework/platform/android/
H A DtcuAndroidExecService.cpp220 m_logReader.stop(); in cleanup()
345 void ServerThread::stop (void) in stop() function in tcu::Android::ServerThread
368 void ExecService::stop (void) in stop() function in tcu::Android::ExecService
370 m_thread.stop(); in stop()
/third_party/python/Objects/
H A Dtupleobject.c554 stop: slice_index(accept={int}, c_default="PY_SSIZE_T_MAX") = sys.maxsize
564 Py_ssize_t stop) in tuple_index_impl()
574 if (stop < 0) { in tuple_index_impl()
575 stop += Py_SIZE(self); in tuple_index_impl()
577 else if (stop > Py_SIZE(self)) { in tuple_index_impl()
578 stop = Py_SIZE(self); in tuple_index_impl()
580 for (i = start; i < stop; i++) { in tuple_index_impl()
790 Py_ssize_t start, stop, step, slicelength, i; in tuplesubscript() local
795 if (PySlice_Unpack(item, &start, &stop, &step) < 0) { in tuplesubscript()
799 &stop, ste in tuplesubscript()
563 tuple_index_impl(PyTupleObject *self, PyObject *value, Py_ssize_t start, Py_ssize_t stop) tuple_index_impl() argument
[all...]
/foundation/resourceschedule/ffrt/test/ut/testcase/
H A Dut_core.cpp252 std::atomic_bool stop = false; in HWTEST_F() local
255 while (!stop); in HWTEST_F()
259 stop = true; in HWTEST_F()
/kernel/linux/linux-5.10/drivers/gpu/drm/mediatek/
H A Dmtk_drm_ddp_comp.h46 void (*stop)(struct mtk_ddp_comp *comp); member
93 if (comp->funcs && comp->funcs->stop) in mtk_ddp_comp_stop()
94 comp->funcs->stop(comp); in mtk_ddp_comp_stop()
/kernel/linux/linux-5.10/tools/perf/bench/
H A Dsched-messaging.c264 struct timeval start, stop, diff; in bench_sched_messaging() local
300 gettimeofday(&stop, NULL); in bench_sched_messaging()
302 timersub(&stop, &start, &diff); in bench_sched_messaging()
/kernel/linux/linux-5.10/tools/bpf/bpftool/
H A Dmap_perf_ring.c31 static volatile bool stop; variable
56 stop = true; in int_exit()
216 while (!stop) { in do_event_pipe()

Completed in 24 milliseconds

1...<<11121314151617181920>>...123