Lines Matching defs:rslt
309 int rslt = syscall(SYS_gettid);
310 if (rslt == -1) {
314 return (pid_t)rslt;
1099 int rslt = pthread_key_create(&key, NULL);
1100 assert(rslt == 0, "cannot allocate thread local storage");
1107 int rslt = pthread_key_delete((pthread_key_t)index);
1108 assert(rslt == 0, "invalid index");
1112 int rslt = pthread_setspecific((pthread_key_t)index, value);
1113 assert(rslt == 0, "pthread_setspecific failed");
1804 int rslt = dl_iterate_phdr(address_to_library_name_callback, (void *)&data);
1806 if (rslt) {
3400 int rslt = shmdt(base);
3401 if (rslt == 0) {