Searched refs:userValue (Results 1 - 9 of 9) sorted by relevance

/haiku/src/system/libroot/posix/signal/
H A Dsigqueue.cpp19 sigqueue(pid_t pid, int signal, const union sigval userValue) argument
27 status_t error = _kern_send_signal(pid, signal, &userValue,
/haiku/src/system/kernel/
H A DUserEvent.cpp73 SignalEvent::SetUserValue(union sigval userValue) argument
75 fSignal->SetUserValue(userValue);
H A Dsignal.cpp1895 send_signal_internal(pid_t id, uint signalNumber, union sigval userValue, argument
1908 signal.SetUserValue(userValue);
1936 union sigval userValue; local
1937 userValue.sival_ptr = NULL;
1939 return send_signal_internal(id, signalNumber, userValue, flags);
2248 union sigval userValue; local
2251 || user_memcpy(&userValue, userUserValue, sizeof(userValue))
2256 userValue.sival_ptr = NULL;
2261 return send_signal_internal(id, signalNumber, userValue, flag
[all...]
/haiku/headers/private/kernel/
H A DUserEvent.h35 void SetUserValue(union sigval userValue);
H A Dksignal.h127 void SetUserValue(union sigval userValue) argument
128 { fUserValue = userValue; }
231 const union sigval* userValue, uint32 flags);
/haiku/src/system/kernel/disk_device_manager/
H A Dddm_userland_interface.cpp63 copy_from_user_value(Type& value, const Type* userValue) argument
65 if (userValue == NULL)
68 if (!IS_USER_ADDRESS(userValue))
71 return user_memcpy(&value, userValue, sizeof(Type));
77 copy_to_user_value(Type* userValue, const Type& value) argument
79 if (userValue == NULL)
82 if (!IS_USER_ADDRESS(userValue))
85 return user_memcpy(userValue, &value, sizeof(Type));
103 inline status_t Init(const char* userValue, size_t maxSize) argument
105 if (userValue
[all...]
/haiku/src/system/kernel/fs/
H A Dsocket.cpp1088 _user_getsockopt(int socket, int level, int option, void *userValue, argument
1092 if (userValue == NULL || _length == NULL)
1094 if (!IS_USER_ADDRESS(userValue) || !IS_USER_ADDRESS(_length))
1114 if (user_memcpy(userValue, value, length) != B_OK)
1122 _user_setsockopt(int socket, int level, int option, const void *userValue, argument
1126 if (userValue == NULL || length > MAX_SOCKET_OPTION_LENGTH)
1131 if (!IS_USER_ADDRESS(userValue)
1132 || user_memcpy(value, userValue, length) != B_OK) {
/haiku/headers/posix/
H A Dsignal.h244 int sigqueue(pid_t pid, int _signal, const union sigval userValue);
/haiku/headers/private/system/
H A Dsyscalls.h228 const union sigval* userValue, uint32 flags);

Completed in 85 milliseconds