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

1 2 3 4 5 6 7

  /src/lib/libcurses/
inch.c 88 attr_t attr; local in function:winch
95 attr = (attr_t) ((win)->alines[(win)->cury]->line[(win)->curx].attr &
97 if (__using_color && ((attr & __COLOR) == __default_color))
98 attr &= ~__COLOR;
99 return (ch | attr);
insch.c 95 attr_t attr; local in function:winsch
101 attr = win->battr & __COLOR;
103 attr = 0;
120 temp1->attr = (attr_t) ch & __ATTRIBUTES;
121 if (temp1->attr & __COLOR)
122 temp1->attr |= (win->battr & ~__COLOR);
124 temp1->attr |= win->battr;
133 win->alines[LINES - 1]->line[COLS - 1].attr != attr)) {
insdelln.c 76 attr_t attr; local in function:winsdelln
88 attr = win->battr & __COLOR;
90 attr = 0;
121 win->alines[y]->line[i].attr = attr;
165 win->alines[y]->line[i].attr = attr;
  /src/lib/libpthread/
mtx.c 67 pthread_mutexattr_t attr; local in function:mtx_init_recursive
71 if (pthread_mutexattr_init(&attr) != 0)
74 if (pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE) != 0) {
75 pthread_mutexattr_destroy(&attr);
80 if (pthread_mutex_init(mtx, &attr) == 0)
83 pthread_mutexattr_destroy(&attr);
  /src/sys/arch/i386/stand/lib/
biosdisk.h 39 uint64_t attr; member in struct:biosdisk_partition
  /src/tests/lib/libpthread/
t_detach.c 60 pthread_attr_t attr; local in function:ATF_TC_BODY
67 PTHREAD_REQUIRE(pthread_attr_init(&attr));
68 PTHREAD_REQUIRE(pthread_attr_setdetachstate(&attr, state));
69 PTHREAD_REQUIRE(pthread_create(&t, &attr, func, NULL));
t_join.c 77 pthread_attr_t attr; local in function:threadfunc1
100 ATF_REQUIRE(pthread_attr_init(&attr) == 0);
106 ATF_REQUIRE(pthread_attr_setstacksize(&attr, STACKSIZE * (i + 1)) == 0);
107 ATF_REQUIRE(pthread_attr_setguardsize(&attr, STACKSIZE * (i + 2)) == 0);
109 rv = pthread_create(&thread[i], &attr, threadfunc2, (void *)i);
139 ATF_REQUIRE(pthread_attr_destroy(&attr) == 0);
151 pthread_attr_t attr; local in function:threadfunc2
156 ATF_REQUIRE(pthread_getattr_np(pthread_self(), &attr) == 0);
157 ATF_REQUIRE(pthread_attr_getstacksize(&attr, &stacksize) == 0);
159 ATF_REQUIRE(pthread_attr_getguardsize(&attr, &guardsize) == 0)
    [all...]
t_name.c 72 "Checks pthread_{,attr}_{get,set}name_np() API");
77 pthread_attr_t attr; local in function:ATF_TC_BODY
80 PTHREAD_REQUIRE(pthread_attr_init(&attr));
81 PTHREAD_REQUIRE(pthread_attr_getname_np(&attr, retname,
84 ATF_REQUIRE_EQ(pthread_attr_setname_np(&attr, NAME_TOO_LONG, NULL), EINVAL);
85 PTHREAD_REQUIRE(pthread_attr_setname_np(&attr, "%s",
92 PTHREAD_REQUIRE(pthread_create(&thr, &attr, threadfunc, NULL));
t_condwait.c 55 pthread_condattr_t attr; local in function:run
62 PTHREAD_REQUIRE(pthread_condattr_init(&attr));
63 PTHREAD_REQUIRE(pthread_condattr_setclock(&attr, clck));
64 pthread_cond_init(&cond, &attr);
  /src/tests/kernel/arch/aarch64/
execregs.c 135 /* x3: used to pass posix_spawn arg3, nonnull anyway (&attr) */
167 posix_spawnattr_t attr; local in function:spawnregschild
177 error = posix_spawnattr_init(&attr);
215 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp);
219 out: posix_spawnattr_destroy(&attr);
  /src/tests/kernel/arch/i386/
execregs.c 94 posix_spawnattr_t attr; local in function:spawnregschild
104 error = posix_spawnattr_init(&attr);
121 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp);
125 out: posix_spawnattr_destroy(&attr);
  /src/tests/kernel/arch/vax/
execregs.c 121 posix_spawnattr_t attr; local in function:spawnregschild
131 error = posix_spawnattr_init(&attr);
155 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp);
159 out: posix_spawnattr_destroy(&attr);
  /src/tests/kernel/arch/x86_64/
execregs.c 103 /* rcx: used to pass posix_spawn arg3, nonnull anyway (&attr) */
116 posix_spawnattr_t attr; local in function:spawnregschild
126 error = posix_spawnattr_init(&attr);
145 error = posix_spawn(&pid, path, &fileacts, &attr, argv, envp);
149 out: posix_spawnattr_destroy(&attr);
  /src/lib/libc/stdlib/
system.c 61 posix_spawnattr_t attr; local in function:system
112 posix_spawnattr_init(&attr);
113 posix_spawnattr_setsigdefault(&attr, &sigdefault);
114 posix_spawnattr_setsigmask(&attr, &omask);
115 posix_spawnattr_setflags(&attr,
118 error = posix_spawn(&pid, _PATH_BSHELL, NULL, &attr, __UNCONST(argp),
121 posix_spawnattr_destroy(&attr);
  /src/sys/arch/amiga/dev/
ite_rh.c 194 register u_char attr; local in function:rh_putc
196 attr = (mode & ATTR_INV) ? 0x21 : 0x10;
197 if (mode & ATTR_UL) attr = 0x01; /* ???????? */
198 if (mode & ATTR_BOLD) attr |= 0x08;
199 if (mode & ATTR_BLINK) attr |= 0x80;
202 *fb++ = c; *fb = attr;
ite_cl.c 154 unsigned char attr; local in function:cl_putc
160 attr =(unsigned char) ((mode & ATTR_INV) ? (0x70) : (0x07));
161 if (mode & ATTR_UL) attr = 0x01; /* ???????? */
162 if (mode & ATTR_BOLD) attr |= 0x08;
163 if (mode & ATTR_BLINK) attr |= 0x80;
169 *cp = (unsigned char) attr;
  /src/sys/dev/rcons/
rcons_kern.c 66 long attr; local in function:rcons_cnputc
69 attr = mydevicep->rc_attr;
80 mydevicep->rc_attr = attr;
  /src/tests/lib/libbluetooth/
t_sdp_get.c 107 uint16_t attr; local in function:ATF_TC_BODY
113 ATF_REQUIRE(sdp_get_attr(&test, &attr, &value));
114 ATF_CHECK_EQ(attr, 0x0000);
118 ATF_REQUIRE_EQ(sdp_get_attr(&test, &attr, &value), false);
123 ATF_REQUIRE(sdp_get_attr(&test, &attr, &value));
124 ATF_CHECK_EQ(attr, 0x0001);
  /src/sys/dev/mvme/
vme_two.c 172 u_int32_t start, end, attr; local in function:vmetwo_master_range
187 attr = vme2_lcsr_read(sc, VME2LCSR_MASTER_ATTR);
188 attr >>= VME2_MASTER_ATTR_AM_SHIFT(range);
194 if (attr & VME2_MASTER_ATTR_D16)
196 attr &= VME2_MASTER_ATTR_AM_MASK;
198 vr->vr_am = (attr & VME_AM_ADRSIZEMASK) | MVMEBUS_AM2CAP(attr);
  /src/sbin/fsck_v7fs/
main.c 226 struct v7fs_fileattr attr; local in function:make_lost_and_found
236 memset(&attr, 0, sizeof(attr));
237 attr.uid = 0;
238 attr.gid = 0;
239 attr.mode = V7FS_IFDIR | 0755;
240 attr.device = 0;
241 attr.ctime = attr.mtime = attr.atime = (v7fs_time_t)time(NULL)
    [all...]
  /src/sys/arch/atari/dev/
grfabs_et.h 34 u_char attr[25]; /* Std. VGA attr. registers */ member in struct:__anon641a61d90108
  /src/sys/compat/linux/common/
linux_sigevent.h 55 void *attr; member in struct:linux_sigevent::__anon1630fdef010a::__anon1630fdef0208
  /src/sys/compat/linux32/common/
linux32_sigevent.h 57 void *attr; member in struct:linux32_sigevent::__anon4166d359010a::__anon4166d3590208
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_engine_heartbeat.c 58 rq->sched.attr.priority);
63 struct i915_sched_attr attr = { local in function:heartbeat
85 rq->sched.attr.priority < I915_PRIORITY_BARRIER) {
92 attr.priority = I915_PRIORITY_MASK;
93 if (rq->sched.attr.priority >= attr.priority)
94 attr.priority |= I915_USER_PRIORITY(I915_PRIORITY_HEARTBEAT);
95 if (rq->sched.attr.priority >= attr.priority)
96 attr.priority = I915_PRIORITY_BARRIER
193 struct i915_sched_attr attr = { .priority = I915_PRIORITY_BARRIER }; local in function:intel_engine_pulse
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_scheduler_types.h 68 struct i915_sched_attr attr; member in struct:i915_sched_node

Completed in 24 milliseconds

1 2 3 4 5 6 7