/third_party/toybox/toys/other/ |
H A D | hexedit.c | 33 int numlen, undo, undolen; 198 ll[TT.undo] = pos; in hexedit_main() 199 toybuf[(sizeof(long long)*UNDO_LEN)+TT.undo++] = TT.data[pos]; in hexedit_main() 201 TT.undo %= UNDO_LEN; in hexedit_main() 220 if (!TT.undo) TT.undo = UNDO_LEN; in hexedit_main() 221 pos = ll[--TT.undo]; in hexedit_main() 222 TT.data[pos] = toybuf[sizeof(long long)*UNDO_LEN+TT.undo]; in hexedit_main()
|
/kernel/linux/linux-5.10/drivers/base/ |
H A D | attribute_container.c | 244 int (*undo)(struct attribute_container *, in do_attribute_container_device_trigger_safe() 267 if (!undo) in do_attribute_container_device_trigger_safe() 270 /* Attempt to undo the work partially done. */ in do_attribute_container_device_trigger_safe() 277 undo(cont, dev, &ic->classdev); in do_attribute_container_device_trigger_safe() 288 * @undo A function to undo the work previously done in case of error 292 * undo the partial work that has been done, on previous classdev. It 301 int (*undo)(struct attribute_container *, in attribute_container_device_trigger_safe() 316 fn, undo); in attribute_container_device_trigger_safe() 323 if (ret && !WARN_ON(!undo)) { in attribute_container_device_trigger_safe() [all...] |
/kernel/linux/linux-6.6/drivers/base/ |
H A D | attribute_container.c | 244 int (*undo)(struct attribute_container *, in do_attribute_container_device_trigger_safe() 267 if (!undo) in do_attribute_container_device_trigger_safe() 270 /* Attempt to undo the work partially done. */ in do_attribute_container_device_trigger_safe() 277 undo(cont, dev, &ic->classdev); in do_attribute_container_device_trigger_safe() 288 * @undo: A function to undo the work previously done in case of error 292 * undo the partial work that has been done, on previous classdev. It 301 int (*undo)(struct attribute_container *, in attribute_container_device_trigger_safe() 316 fn, undo); in attribute_container_device_trigger_safe() 323 if (ret && !WARN_ON(!undo)) { in attribute_container_device_trigger_safe() [all...] |
/third_party/python/Lib/idlelib/ |
H A D | undo.py | 12 #$ event <<undo>> 16 #$ event <<dump-undo-state>> 31 self.unbind("<<undo>>") 33 self.unbind("<<dump-undo-state>>") 36 self.bind("<<undo>>", self.undo_event) 38 self.bind("<<dump-undo-state>>", self.dump_event) 90 # undo & redo. Nested matching calls are OK, and the inner calls 94 # directly into the undo list, as if undo_block_xxx hadn't been 131 ##print "truncating undo list" 144 cmd.undo(sel 189 def undo(self, text): global() member in Command 231 def undo(self, text): global() member in InsertCommand 292 def undo(self, text): global() member in DeleteCommand 328 def undo(self, text): global() member in CommandSequence [all...] |
H A D | format.py | 398 undo = self.editwin.undo 399 undo.undo_block_start() 421 undo.undo_block_stop()
|
H A D | editor.py | 54 from idlelib.undo import UndoDelegator 271 self.undo = undo = self.UndoDelegator() 272 per.insertfilter(undo) 273 text.undo_block_start = undo.undo_block_start 274 text.undo_block_stop = undo.undo_block_stop 275 undo.set_saved_change_hook(self.saved_change_hook) 836 self.per.insertfilterafter(filter=self.color, after=self.undo) 1062 return self.undo.get_saved() 1065 self.undo [all...] |
/third_party/musl/src/thread/ |
H A D | pthread_once.c | 3 static void undo(void *control) in undo() function 21 pthread_cleanup_push(undo, control); in __pthread_once_full()
|
/third_party/musl/porting/linux/user/src/thread/ |
H A D | pthread_once.c | 3 static void undo(void *control) in undo() function 21 pthread_cleanup_push(undo, control); in __pthread_once_full()
|
/kernel/linux/linux-5.10/sound/soc/ |
H A D | soc-jack.c | 330 goto undo; in snd_soc_jack_add_gpios() 346 goto undo; in snd_soc_jack_add_gpios() 355 goto undo; in snd_soc_jack_add_gpios() 361 goto undo; in snd_soc_jack_add_gpios() 406 undo: in snd_soc_jack_add_gpios()
|
/kernel/linux/linux-6.6/sound/soc/ |
H A D | soc-jack.c | 329 goto undo; in snd_soc_jack_add_gpios() 345 goto undo; in snd_soc_jack_add_gpios() 354 goto undo; in snd_soc_jack_add_gpios() 360 goto undo; in snd_soc_jack_add_gpios() 406 undo: in snd_soc_jack_add_gpios()
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/sphinx/ |
H A D | cdoc.py | 80 def undo(self): member in Lines 93 lines.undo() 135 lines.undo() ## end of doc-block 143 lines.undo() 155 lines.undo()
|
/kernel/linux/linux-5.10/ipc/ |
H A D | sem.c | 37 * - undo adjustments at process exit are limited to 0..SEMVMX. 102 * - at task exit when performing undo adjustments (see exit_sem). 121 struct list_head list_id; /* undo requests on this array */ 133 struct sem_undo *undo; /* undo structure */ member 143 /* Each task has a list of undo requests. They are executed automatically 654 un = q->undo; in perform_atomic_semop_slow() 672 int undo = un->semadj[sop->sem_num] - sem_op; in perform_atomic_semop_slow() local 673 /* Exceeding the undo range is an error. */ in perform_atomic_semop_slow() 674 if (undo < ( in perform_atomic_semop_slow() 755 int undo = un->semadj[sop->sem_num] - sem_op; perform_atomic_semop() local 769 int undo = un->semadj[sop->sem_num] - sem_op; perform_atomic_semop() local 1732 compat_uptr_t undo; global() member [all...] |
/kernel/linux/linux-6.6/ipc/ |
H A D | sem.c | 37 * - undo adjustments at process exit are limited to 0..SEMVMX. 102 * - at task exit when performing undo adjustments (see exit_sem). 121 struct list_head list_id; /* undo requests on this array */ 133 struct sem_undo *undo; /* undo structure */ member 143 /* Each task has a list of undo requests. They are executed automatically 657 un = q->undo; in perform_atomic_semop_slow() 675 int undo = un->semadj[sop->sem_num] - sem_op; in perform_atomic_semop_slow() local 676 /* Exceeding the undo range is an error. */ in perform_atomic_semop_slow() 677 if (undo < ( in perform_atomic_semop_slow() 758 int undo = un->semadj[sop->sem_num] - sem_op; perform_atomic_semop() local 771 int undo = un->semadj[sop->sem_num] - sem_op; perform_atomic_semop() local 1733 compat_uptr_t undo; global() member [all...] |
/kernel/linux/linux-6.6/arch/s390/kernel/ |
H A D | perf_pai_ext.c | 167 goto undo; in paiext_alloc() 187 goto undo; in paiext_alloc() 200 goto undo; in paiext_alloc() 208 undo: in paiext_alloc()
|
/kernel/linux/linux-5.10/drivers/xen/ |
H A D | gntalloc.c | 134 goto undo; in add_grefs() 143 goto undo; in add_grefs() 151 goto undo; in add_grefs() 163 undo: in add_grefs()
|
/kernel/linux/linux-6.6/drivers/xen/ |
H A D | gntalloc.c | 134 goto undo; in add_grefs() 143 goto undo; in add_grefs() 151 goto undo; in add_grefs() 163 undo: in add_grefs()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/ |
H A D | omapfb-ioctl.c | 106 goto undo; in omapfb_setup_plane() 113 goto undo; in omapfb_setup_plane() 126 goto undo; in omapfb_setup_plane() 132 goto undo; in omapfb_setup_plane() 138 goto undo; in omapfb_setup_plane() 153 undo: in omapfb_setup_plane()
|
/kernel/linux/linux-6.6/drivers/video/fbdev/omap2/omapfb/ |
H A D | omapfb-ioctl.c | 106 goto undo; in omapfb_setup_plane() 113 goto undo; in omapfb_setup_plane() 126 goto undo; in omapfb_setup_plane() 132 goto undo; in omapfb_setup_plane() 138 goto undo; in omapfb_setup_plane() 153 undo: in omapfb_setup_plane()
|
/kernel/linux/linux-5.10/mm/ |
H A D | page_isolation.c | 200 goto undo; in start_isolate_page_range() 205 undo: in start_isolate_page_range()
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
H A D | sem.h | 8 #define SEM_UNDO 0x1000 /* undo the operation on exit */ 32 struct sem_undo *undo; /* undo requests on this array */ member 88 #define SEMUME SEMOPM /* max num of undo entries per process */ 89 #define SEMMNU SEMMNS /* num of undo structures system wide */
|
/kernel/linux/linux-6.6/include/uapi/linux/ |
H A D | sem.h | 8 #define SEM_UNDO 0x1000 /* undo the operation on exit */ 32 struct sem_undo *undo; /* undo requests on this array */ member 88 #define SEMUME SEMOPM /* max num of undo entries per process */ 89 #define SEMMNU SEMMNS /* num of undo structures system wide */
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/ |
H A D | sem.h | 40 struct sem_undo * undo; member
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/ |
H A D | sem.h | 40 struct sem_undo * undo; member
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/ |
H A D | sem.h | 27 struct sem_undo *undo; member
|
/third_party/mbedtls/scripts/ |
H A D | prepare_release.sh | 10 -u Prepare for development (undo the release preparation) 24 unrelease= # if non-empty, we're in undo-release mode
|