HomeSort by: relevance | last modified time | path
    Searched defs:cursor (Results 1 - 25 of 186) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/sys/dev/ofw/
ofw_network_subr.c 100 size_t cursor; local in function:of_network_decode_media
122 for (nmedia = 0, cursor = 0;
123 (cp = strlist_next(sl, len, &cursor)) != NULL; ) {
ofw_network_subr.c 100 size_t cursor; local in function:of_network_decode_media
122 for (nmedia = 0, cursor = 0;
123 (cp = strlist_next(sl, len, &cursor)) != NULL; ) {
ofw_network_subr.c 100 size_t cursor; local in function:of_network_decode_media
122 for (nmedia = 0, cursor = 0;
123 (cp = strlist_next(sl, len, &cursor)) != NULL; ) {
  /src/sys/dev/hpc/
hpcfbvar.h 45 void (*cursor)(void *, int, int, int, int, int); member in struct:hpcfb_accessops
hpcfbvar.h 45 void (*cursor)(void *, int, int, int, int, int); member in struct:hpcfb_accessops
hpcfbvar.h 45 void (*cursor)(void *, int, int, int, int, int); member in struct:hpcfb_accessops
  /src/lib/libedit/
chared.h 46 * the cursor.
48 * On the other hand we really don't want to move the cursor, because
49 * all the editing commands don't include the character under the cursor.
60 int cursor; /* position of saved cursor */ member in struct:c_undo_t
chared.h 46 * the cursor.
48 * On the other hand we really don't want to move the cursor, because
49 * all the editing commands don't include the character under the cursor.
60 int cursor; /* position of saved cursor */ member in struct:c_undo_t
chared.h 46 * the cursor.
48 * On the other hand we really don't want to move the cursor, because
49 * all the editing commands don't include the character under the cursor.
60 int cursor; /* position of saved cursor */ member in struct:c_undo_t
  /src/lib/libquota/
quota_kernel.c 232 struct kernel_quotacursor *cursor; local in function:__quota_kernel_cursor_create
235 cursor = malloc(sizeof(*cursor));
236 if (cursor == NULL) {
241 args.u.cursoropen.qc_cursor = &cursor->kcursor;
244 free(cursor);
248 return cursor;
253 struct kernel_quotacursor *cursor)
258 args.u.cursorclose.qc_cursor = &cursor->kcursor;
263 free(cursor);
    [all...]
quota_kernel.c 232 struct kernel_quotacursor *cursor; local in function:__quota_kernel_cursor_create
235 cursor = malloc(sizeof(*cursor));
236 if (cursor == NULL) {
241 args.u.cursoropen.qc_cursor = &cursor->kcursor;
244 free(cursor);
248 return cursor;
253 struct kernel_quotacursor *cursor)
258 args.u.cursorclose.qc_cursor = &cursor->kcursor;
263 free(cursor);
    [all...]
quota_kernel.c 232 struct kernel_quotacursor *cursor; local in function:__quota_kernel_cursor_create
235 cursor = malloc(sizeof(*cursor));
236 if (cursor == NULL) {
241 args.u.cursoropen.qc_cursor = &cursor->kcursor;
244 free(cursor);
248 return cursor;
253 struct kernel_quotacursor *cursor)
258 args.u.cursorclose.qc_cursor = &cursor->kcursor;
263 free(cursor);
    [all...]
  /src/sys/arch/bebox/stand/boot/
video.c 104 cursor(struct screen *d, int flag) function in typeref:typename:void
133 cursor(d, 0);
195 cursor(d, 1);
video.c 104 cursor(struct screen *d, int flag) function in typeref:typename:void
133 cursor(d, 0);
195 cursor(d, 1);
video.c 104 cursor(struct screen *d, int flag) function in typeref:typename:void
133 cursor(d, 0);
195 cursor(d, 1);
vga.c 88 static void cursor(void);
95 * cursor() sets an offset (0-1999) into the 80x25 text area
98 cursor(void) function in typeref:typename:void
226 case 'C': /* right cursor */
231 case 'D': /* left cursor */
248 case 'H': /* Cursor move */
262 case '_': /* set cursor */
273 case ';': /* Switch params in cursor def */
391 cursor();
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_crtc.h 64 } cursor; member in struct:nouveau_crtc
nouveau_crtc.h 64 } cursor; member in struct:nouveau_crtc
nouveau_crtc.h 64 } cursor; member in struct:nouveau_crtc
  /src/sys/lib/libkern/
strlist.c 121 size_t cursor = *cursorp; local in function:strlist_next
123 if (cursor >= slsize) {
128 const char *cp = sl + cursor;
129 *cursorp = cursor + strlen(cp) + 1;
253 * This routine operates independently of the cursor used to enumerate
298 * This routine operates independently of the cursor used to enumerate
382 size_t cursor; local in function:main
393 cursor = 0;
394 assert((cp = strlist_next(sl, slsize, &cursor)) != NULL);
397 assert((cp = strlist_next(sl, slsize, &cursor)) != NULL)
    [all...]
strlist.c 121 size_t cursor = *cursorp; local in function:strlist_next
123 if (cursor >= slsize) {
128 const char *cp = sl + cursor;
129 *cursorp = cursor + strlen(cp) + 1;
253 * This routine operates independently of the cursor used to enumerate
298 * This routine operates independently of the cursor used to enumerate
382 size_t cursor; local in function:main
393 cursor = 0;
394 assert((cp = strlist_next(sl, slsize, &cursor)) != NULL);
397 assert((cp = strlist_next(sl, slsize, &cursor)) != NULL)
    [all...]
strlist.c 121 size_t cursor = *cursorp; local in function:strlist_next
123 if (cursor >= slsize) {
128 const char *cp = sl + cursor;
129 *cursorp = cursor + strlen(cp) + 1;
253 * This routine operates independently of the cursor used to enumerate
298 * This routine operates independently of the cursor used to enumerate
382 size_t cursor; local in function:main
393 cursor = 0;
394 assert((cp = strlist_next(sl, slsize, &cursor)) != NULL);
397 assert((cp = strlist_next(sl, slsize, &cursor)) != NULL)
    [all...]
  /src/lib/libtelnet/
kerberos5.c 158 krb5_kt_cursor cursor; local in function:kerberos5_init
164 ret = krb5_kt_start_seq_get(telnet_context, kt, &cursor);
169 krb5_kt_end_seq_get(telnet_context, kt, &cursor);
  /src/sys/arch/ews4800mips/stand/common/
console.h 74 void (*cursor)(int, int); member in struct:cons
  /src/sys/arch/prep/stand/boot/
vga.c 90 static void cursor(void);
97 * cursor() sets an offset (0-1999) into the 80x25 text area
100 cursor(void) function in typeref:typename:void
228 case 'C': /* right cursor */
233 case 'D': /* left cursor */
250 case 'H': /* Cursor move */
264 case '_': /* set cursor */
275 case ';': /* Switch params in cursor def */
393 cursor();

Completed in 38 milliseconds

1 2 3 4 5 6 7 8