HomeSort by: relevance | last modified time | path
    Searched defs:ssb (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_symbolize.cc 65 SymbolizedStackBuilder *ssb = (struct SymbolizedStackBuilder *)ctx; local in function:__tsan::AddFrame
66 if (ssb->tail) {
67 ssb->tail->next = SymbolizedStack::New(ssb->addr);
68 ssb->tail = ssb->tail->next;
70 ssb->head = ssb->tail = SymbolizedStack::New(ssb->addr);
72 AddressInfo *info = &ssb->tail->info
86 SymbolizedStackBuilder ssb = {nullptr, nullptr, addr}; local in function:__tsan::SymbolizeCode
    [all...]
  /src/sys/rump/kern/lib/libsys_cygwin/
rump_cygwin_compat.c 67 #define PARCOPY(a) ssb->a = sb->a
69 bsd_to_cygwin_stat(const struct stat *sb, struct cygwin_stat *ssb)
72 memset(ssb, 0, sizeof(*ssb));
84 timespec_to_timespec50(&sb->st_atimespec, &ssb->st_atim);
85 timespec_to_timespec50(&sb->st_mtimespec, &ssb->st_mtim);
86 timespec_to_timespec50(&sb->st_ctimespec, &ssb->st_ctim);
87 timespec_to_timespec50(&sb->st_birthtimespec, &ssb->st_btim);
94 struct cygwin_stat ssb; local in function:rump_cygwin_sys_stat
102 bsd_to_cygwin_stat(&sb, &ssb);
111 struct cygwin_stat ssb; local in function:rump_cygwin_sys_fstat
128 struct cygwin_stat ssb; local in function:rump_cygwin_sys_lstat
    [all...]
  /src/sys/rump/kern/lib/libsys_sunos/
rump_sunos_compat.c 104 #define PARCOPY(a) ssb->a = sb->a
106 bsd_to_sunos_stat(const struct stat *sb, struct sunos_stat *ssb)
109 memset(ssb, 0, sizeof(*ssb));
122 ssb->st_atim = sb->st_atimespec;
123 ssb->st_mtim = sb->st_mtimespec;
124 ssb->st_ctim = sb->st_ctimespec;
126 timespec_to_timespec50(&sb->st_atimespec, &ssb->st_atim);
127 timespec_to_timespec50(&sb->st_mtimespec, &ssb->st_mtim);
128 timespec_to_timespec50(&sb->st_ctimespec, &ssb->st_ctim)
136 struct sunos_stat ssb; local in function:rump_sunos_sys_stat
153 struct sunos_stat ssb; local in function:rump_sunos_sys_fstat
170 struct sunos_stat ssb; local in function:rump_sunos_sys_lstat
    [all...]

Completed in 76 milliseconds