OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:portable_signum
(Results
1 - 3
of
3
) sorted by null
/development/ndk/sources/android/libportable/arch-mips/
signal.c
61
__hidden char *map_portable_signum_to_name(int
portable_signum
)
65
switch(
portable_signum
) {
223
__hidden int signum_pton(int
portable_signum
)
227
switch(
portable_signum
) {
332
return
portable_signum
;
335
ALOGE("%s: switch default: NOTE
portable_signum
:%d Not supported. Just a Test?",
336
__func__,
portable_signum
);
344
if (
portable_signum
< 0) {
345
mips_signum =
portable_signum
;
346
} else if (
portable_signum
> NSIG_PORTABLE)
570
int
portable_signum
;
local
621
int
portable_signum
;
local
937
int
portable_signum
;
local
1000
int
portable_signum
= signum_ntop(mips_signum);
local
[
all
...]
pthread.c
262
int WRAP(pthread_kill)(pthread_t thread, int
portable_signum
)
264
char *portable_signame = map_portable_signum_to_name(
portable_signum
);
268
ALOGV("%s(thread:%lx,
portable_signum
:%d)", __func__, thread,
portable_signum
);
270
mips_signum = signum_pton(
portable_signum
);
272
if ((
portable_signum
!= 0) && (mips_signum == 0)) {
/development/ndk/sources/android/libportable/common/include/
signal_portable.h
141
extern int WRAP(tkill)(int tid, int
portable_signum
);
153
extern __hidden char *map_portable_signum_to_name(int
portable_signum
);
155
extern __hidden int signum_pton(int
portable_signum
);
170
extern int WRAP(__rt_sigaction)(int
portable_signum
,
Completed in 31 milliseconds