Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 25 of 2641) sorted by relevance

12345678910>>...106

/OK3568_Linux_fs/u-boot/arch/arm/cpu/armv7/
H A Dcache_v7.c31 static void v7_dcache_clean_inval_range(u32 start, u32 stop, u32 line_len) in v7_dcache_clean_inval_range() argument
37 for (mva = start; mva < stop; mva = mva + line_len) { in v7_dcache_clean_inval_range()
43 static void v7_dcache_inval_range(u32 start, u32 stop, u32 line_len) in v7_dcache_inval_range() argument
48 check_cache_range(start, stop); in v7_dcache_inval_range()
58 if (stop & (line_len - 1)) { in v7_dcache_inval_range()
59 mva = stop & ~(line_len - 1); in v7_dcache_inval_range()
61 stop = mva; in v7_dcache_inval_range()
64 for (mva = start; mva < stop; mva = mva + line_len) { in v7_dcache_inval_range()
70 static void v7_dcache_maint_range(u32 start, u32 stop, u32 range_op) in v7_dcache_maint_range() argument
84 v7_dcache_clean_inval_range(start, stop, line_len); in v7_dcache_maint_range()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/lvm2/files/
H A D0001-Avoid-bashisms-in-init-scripts.patch35 - echo $"Usage: $0 {start|stop|status}"
36 + echo "Usage: $0 {start|stop|status}"
53 - echo $"Usage: $0 {start|stop|restart|status}"
54 + echo "Usage: $0 {start|stop|restart|status}"
72 - echo $"Usage: $0 {start|stop|force-stop|restart|condrestart|try-restart|status}"
73 + echo "Usage: $0 {start|stop|force-stop|restart|condrestart|try-restart|status}"
91 - echo $"Usage: $0 {start|stop|restart|status|force-stop}"
92 + echo "Usage: $0 {start|stop|restart|status|force-stop}"
110 - echo $"Usage: $0 {start|stop|restart|status|force-stop}"
111 + echo "Usage: $0 {start|stop|restart|status|force-stop}"
/OK3568_Linux_fs/kernel/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_gram.y281 stop("Prefix multiply defined",
285 stop("Unable to record prefix", EX_SOFTWARE);
293 stop("Patch argument list multiply defined",
297 stop("Unable to record patch arg list", EX_SOFTWARE);
314 stop("Register multiply defined", EX_DATAERR);
393 stop("SCB or SRAM space exhausted", EX_DATAERR);
441 stop("Valid register modes range between 0 and 4.",
454 stop("Only \"const\" symbols allowed in "
459 stop("Valid register modes range between 0 and 4.",
536 stop("Re-definition of register alias",
[all …]
H A Daicasm_macro_gram.y92 stop("Too few arguments for macro invocation",
114 stop("Comma without preceding argument in arg list",
132 stop("Invalid current symbol for adding macro arg",
147 stop("Too many arguments for macro invocation", EX_DATAERR);
152 stop("Unable to replicate replacement text", EX_SOFTWARE);
160 stop(string, EX_DATAERR); in mmerror()
H A Daicasm.c162 stop("-d: Assembler not built with debugging " in main()
173 stop(NULL, EX_CANTCREAT); in main()
189 stop(NULL, EX_CANTCREAT); in main()
197 stop(NULL, EX_CANTCREAT); in main()
204 stop(NULL, EX_CANTCREAT); in main()
234 stop(NULL, EX_OSERR); in main()
239 stop(NULL, EX_OSERR); in main()
277 stop("Unterminated conditional expression", EX_DATAERR); in main()
302 stop(NULL, 0); in main()
337 stop(buf, EX_DATAERR); in back_patch()
[all …]
/OK3568_Linux_fs/kernel/include/trace/events/
H A Dmmc.h52 __entry->stop_opcode = mrq->stop ? mrq->stop->opcode : 0;
53 __entry->stop_arg = mrq->stop ? mrq->stop->arg : 0;
54 __entry->stop_flags = mrq->stop ? mrq->stop->flags : 0;
55 __entry->stop_retries = mrq->stop ? mrq->stop->retries : 0;
136 __entry->stop_opcode = mrq->stop ? mrq->stop->opcode : 0;
137 __entry->stop_err = mrq->stop ? mrq->stop->error : 0;
138 __entry->stop_resp[0] = mrq->stop ? mrq->stop->resp[0] : 0;
139 __entry->stop_resp[1] = mrq->stop ? mrq->stop->resp[1] : 0;
140 __entry->stop_resp[2] = mrq->stop ? mrq->stop->resp[2] : 0;
141 __entry->stop_resp[3] = mrq->stop ? mrq->stop->resp[3] : 0;
[all …]
/OK3568_Linux_fs/u-boot/drivers/i2c/
H A Di2c-uniphier.c83 static int send_byte(struct uniphier_i2c_dev *dev, u32 dtrm, bool *stop) in send_byte() argument
92 *stop = false; in send_byte()
103 uint len, const u8 *buf, bool *stop) in uniphier_i2c_transmit() argument
109 ret = send_byte(dev, I2C_DTRM_STA | I2C_DTRM_NACK | addr << 1, stop); in uniphier_i2c_transmit()
114 ret = send_byte(dev, I2C_DTRM_NACK | *buf++, stop); in uniphier_i2c_transmit()
120 if (*stop) in uniphier_i2c_transmit()
127 uint len, u8 *buf, bool *stop) in uniphier_i2c_receive() argument
134 I2C_DTRM_RD | addr << 1, stop); in uniphier_i2c_receive()
142 if (*stop) in uniphier_i2c_receive()
153 bool stop; in uniphier_i2c_xfer() local
[all …]
H A Di2c-uniphier-f.c128 bool *stop) in wait_for_irq() argument
142 *stop = false; in wait_for_irq()
169 uint len, const u8 *buf, bool *stop) in uniphier_fi2c_transmit() argument
185 ret = wait_for_irq(dev, irq_flags, stop); in uniphier_fi2c_transmit()
195 ret = wait_for_irq(dev, irq_flags, stop); in uniphier_fi2c_transmit()
203 if (*stop) in uniphier_fi2c_transmit()
210 uint len, u8 *buf, bool *stop) in uniphier_fi2c_receive() argument
223 return uniphier_fi2c_transmit(dev, addr, len, buf, stop); in uniphier_fi2c_receive()
236 ret = wait_for_irq(dev, irq_flags, stop); in uniphier_fi2c_receive()
252 if (*stop) in uniphier_fi2c_receive()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/rpcbind/rpcbind/
H A Dinit.d3 # start/stop rpcbind daemon.
40 start-stop-daemon --start --quiet --exec /sbin/rpcbind -- "$@"
48 stop () in stop() function
55 start-stop-daemon --stop --quiet --exec /sbin/rpcbind in stop()
67 stop)
68 stop
71 stop
75 stop
/OK3568_Linux_fs/kernel/arch/powerpc/lib/
H A Dpmem.c12 static inline void __clean_pmem_range(unsigned long start, unsigned long stop) in __clean_pmem_range() argument
17 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __clean_pmem_range()
24 static inline void __flush_pmem_range(unsigned long start, unsigned long stop) in __flush_pmem_range() argument
29 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __flush_pmem_range()
36 static inline void clean_pmem_range(unsigned long start, unsigned long stop) in clean_pmem_range() argument
39 return __clean_pmem_range(start, stop); in clean_pmem_range()
42 static inline void flush_pmem_range(unsigned long start, unsigned long stop) in flush_pmem_range() argument
45 return __flush_pmem_range(start, stop); in flush_pmem_range()
/OK3568_Linux_fs/u-boot/arch/arm/cpu/arm926ejs/
H A Dcache.c27 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
29 if (!check_cache_range(start, stop)) in invalidate_dcache_range()
32 while (start < stop) { in invalidate_dcache_range()
38 void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
40 if (!check_cache_range(start, stop)) in flush_dcache_range()
43 while (start < stop) { in flush_dcache_range()
/OK3568_Linux_fs/u-boot/arch/arm/lib/
H A Dcache-pl310.c53 void v7_outer_cache_flush_range(u32 start, u32 stop) in v7_outer_cache_flush_range() argument
64 for (pa = start; pa < stop; pa = pa + line_size) in v7_outer_cache_flush_range()
71 void v7_outer_cache_inval_range(u32 start, u32 stop) in v7_outer_cache_inval_range() argument
91 if (stop & (line_size - 1)) { in v7_outer_cache_inval_range()
93 __func__, stop); in v7_outer_cache_inval_range()
95 stop &= ~(line_size - 1); in v7_outer_cache_inval_range()
98 for (pa = start; pa < stop; pa = pa + line_size) in v7_outer_cache_inval_range()
/OK3568_Linux_fs/kernel/kernel/
H A Dstatic_call.c96 struct static_call_site *stop) in static_call_sort_entries() argument
98 sort(start, stop - start, sizeof(struct static_call_site), in static_call_sort_entries()
125 struct static_call_site *site, *stop; in __static_call_update() local
166 stop = __stop_static_call_sites; in __static_call_update()
170 stop = mod->static_call_sites + in __static_call_update()
177 site < stop && static_call_key(site) == key; site++) { in __static_call_update()
211 struct static_call_site *stop) in __static_call_init() argument
217 if (start == stop) in __static_call_init()
220 static_call_sort_entries(start, stop); in __static_call_init()
222 for (site = start; site < stop; site++) { in __static_call_init()
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/cpu/arm11/
H A Dcpu.c67 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
69 if (!check_cache_range(start, stop)) in invalidate_dcache_range()
72 while (start < stop) { in invalidate_dcache_range()
78 void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
80 if (!check_cache_range(start, stop)) in flush_dcache_range()
83 while (start < stop) { in flush_dcache_range()
/OK3568_Linux_fs/kernel/arch/powerpc/include/asm/
H A Dcacheflush.h29 void flush_icache_range(unsigned long start, unsigned long stop);
47 static inline void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
52 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in flush_dcache_range()
69 static inline void clean_dcache_range(unsigned long start, unsigned long stop) in clean_dcache_range() argument
74 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in clean_dcache_range()
88 unsigned long stop) in invalidate_dcache_range() argument
93 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in invalidate_dcache_range()
/OK3568_Linux_fs/external/xserver/Xi/
H A Dgtmotion.c78 swapl(&stuff->stop); in SProcXGetDeviceMotionEvents()
97 TimeStamp start, stop; in ProcXGetDeviceMotionEvents() local
123 stop = ClientTimeToServerTime(stuff->stop); in ProcXGetDeviceMotionEvents()
124 if (CompareTimeStamps(start, stop) == LATER || in ProcXGetDeviceMotionEvents()
129 if (CompareTimeStamps(stop, currentTime) == LATER) in ProcXGetDeviceMotionEvents()
130 stop = currentTime; in ProcXGetDeviceMotionEvents()
135 start.milliseconds, stop.milliseconds, in ProcXGetDeviceMotionEvents()
/OK3568_Linux_fs/u-boot/arch/mips/lib/
H A Dcache.c134 void flush_dcache_range(ulong start_addr, ulong stop) in flush_dcache_range() argument
140 if (start_addr == stop) in flush_dcache_range()
143 cache_loop(start_addr, stop, lsize, HIT_WRITEBACK_INV_D); in flush_dcache_range()
147 cache_loop(start_addr, stop, slsize, HIT_WRITEBACK_INV_SD); in flush_dcache_range()
150 void invalidate_dcache_range(ulong start_addr, ulong stop) in invalidate_dcache_range() argument
156 if (start_addr == stop) in invalidate_dcache_range()
161 cache_loop(start_addr, stop, slsize, HIT_INVALIDATE_SD); in invalidate_dcache_range()
163 cache_loop(start_addr, stop, lsize, HIT_INVALIDATE_D); in invalidate_dcache_range()
/OK3568_Linux_fs/kernel/arch/arm/kernel/
H A Dunwind.c105 const struct unwind_idx *stop) in search_index() argument
110 __func__, addr, start, origin, stop); in search_index()
118 stop = origin; in search_index()
126 while (start < stop - 1) { in search_index()
127 const struct unwind_idx *mid = start + ((stop - start) >> 1); in search_index()
135 stop = mid; in search_index()
153 const struct unwind_idx *start, const struct unwind_idx *stop) in unwind_find_origin() argument
155 pr_debug("%s(%p, %p)\n", __func__, start, stop); in unwind_find_origin()
156 while (start < stop) { in unwind_find_origin()
157 const struct unwind_idx *mid = start + ((stop - start) >> 1); in unwind_find_origin()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/autofs/autofs/
H A Dremove-bashism.patch41 -function stop() {
42 +stop() {
46 @@ -125,7 +125,7 @@ function stop() {
54 stop
70 …echo $"Usage: $0 {start|forcestart|stop|status|restart|force-reload|forcerestart|reload|condrestar…
96 -function stop() {
97 +stop() {
101 @@ -102,7 +102,7 @@ function stop() {
107 stop
/OK3568_Linux_fs/u-boot/arch/arm/cpu/pxa/
H A Dcache.c24 void invalidate_dcache_range(unsigned long start, unsigned long stop) in invalidate_dcache_range() argument
27 stop &= ~(CONFIG_SYS_CACHELINE_SIZE - 1); in invalidate_dcache_range()
29 while (start <= stop) { in invalidate_dcache_range()
35 void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
37 return invalidate_dcache_range(start, stop); in flush_dcache_range()
/OK3568_Linux_fs/kernel/virt/lib/
H A Dirqbypass.c35 if (prod->stop) in __connect()
36 prod->stop(prod); in __connect()
37 if (cons->stop) in __connect()
38 cons->stop(cons); in __connect()
61 if (prod->stop) in __disconnect()
62 prod->stop(prod); in __disconnect()
63 if (cons->stop) in __disconnect()
64 cons->stop(cons); in __disconnect()
/OK3568_Linux_fs/kernel/drivers/mmc/host/
H A Drk_sdmmc_ops.c63 BUG_ON(!mrq || !mrq->cmd || !mrq->data || !mrq->stop); in rk_emmc_prepare_mrq()
80 mrq->stop = NULL; in rk_emmc_prepare_mrq()
82 mrq->stop->opcode = MMC_STOP_TRANSMISSION; in rk_emmc_prepare_mrq()
83 mrq->stop->arg = 0; in rk_emmc_prepare_mrq()
84 mrq->stop->flags = MMC_RSP_R1B | MMC_CMD_AC; in rk_emmc_prepare_mrq()
143 struct mmc_command stop = {0}; in rk_emmc_transfer() local
153 mrq.stop = &stop; in rk_emmc_transfer()
/OK3568_Linux_fs/kernel/drivers/i2c/busses/
H A Di2c-hix5hd2.c85 int stop; member
189 if (priv->stop) { in hix5hd2_rw_handle_stop()
259 goto stop; in hix5hd2_i2c_irq()
265 goto stop; in hix5hd2_i2c_irq()
274 goto stop; in hix5hd2_i2c_irq()
285 stop: in hix5hd2_i2c_irq()
299 static void hix5hd2_i2c_message_start(struct hix5hd2_i2c_priv *priv, int stop) in hix5hd2_i2c_message_start() argument
315 struct i2c_msg *msgs, int stop) in hix5hd2_i2c_xfer_msg() argument
323 priv->stop = stop; in hix5hd2_i2c_xfer_msg()
328 hix5hd2_i2c_message_start(priv, stop); in hix5hd2_i2c_xfer_msg()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tests/
H A Dtest_task_service.cpp41 bool stop = false; variable
46 while (!stop) { in worker_thread()
61 stop = true; in signal_handle()
62 svc->stop(); in signal_handle()
79 while (!stop) { in main()
90 svc->stop(); in main()
/OK3568_Linux_fs/buildroot/package/owfs/
H A DS55owserver15 start-stop-daemon -S -x ${DAEMON} -- \
19 stop)
21 start-stop-daemon -K -p ${PID_F}
25 $0 stop
29 echo "Usage: $0 {start|stop|restart|reload}"

12345678910>>...106