Lines Matching defs:rslt
316 int rslt = syscall(SYS_gettid);
317 if (rslt == -1) {
321 return (pid_t)rslt;
1290 int rslt = pthread_key_create(&key, NULL);
1291 assert(rslt == 0, "cannot allocate thread local storage");
1298 int rslt = pthread_key_delete((pthread_key_t)index);
1299 assert(rslt == 0, "invalid index");
1303 int rslt = pthread_setspecific((pthread_key_t)index, value);
1304 assert(rslt == 0, "pthread_setspecific failed");
2074 int rslt = dl_iterate_phdr(address_to_library_name_callback, (void *)&data);
2076 if (rslt) {
3478 int rslt = shmdt(base);
3479 if (rslt == 0) {