Home
last modified time | relevance | path

Searched refs:queueLength (Results 1 – 2 of 2) sorted by relevance

/haiku/src/system/kernel/
H A Dport.cpp137 Port(team_id owner, int32 queueLength, const char* name) in Port()
141 capacity(queueLength), in Port()
144 write_count(queueLength), in Port()
977 create_port(int32 queueLength, const char* name) in create_port() argument
979 TRACE(("create_port(queueLength = %ld, name = \"%s\")\n", queueLength, in create_port()
986 if (queueLength < 1 || queueLength > MAX_QUEUE_LENGTH) in create_port()
997 queueLength, name != NULL ? name : "unnamed port"); in create_port()
1752 _user_create_port(int32 queueLength, const char *userName) in _user_create_port() argument
1757 return create_port(queueLength, NULL); in _user_create_port()
1763 return create_port(queueLength, name); in _user_create_port()
/haiku/headers/private/kernel/
H A Dport.h50 port_id _user_create_port(int32 queueLength, const char *name);