Searched refs:token (Results 51 - 75 of 325) sorted by relevance

1234567891011>>

/haiku-fatelf/src/tests/servers/app/newerClipping/
H A DClientLooper.h41 void _DrawAnimatedLayer(int32 token);
H A DWindowLayer.h93 void InvalidateView(int32 token);
109 void _DrawClient(int32 token);
110 void _DrawClientPolygon(int32 token, BPoint polygon[4]);
H A DWindowLayer.cpp118 int32 token; local
119 if (message->FindInt32("token", &token) >= B_OK)
120 _DrawClient(token);
124 int32 token; local
126 if (message->FindInt32("token", &token) >= B_OK &&
132 _DrawClientPolygon(token, polygon);
139 int32 token; local
140 if (message->FindInt32("token",
449 InvalidateView(int32 token) argument
581 _DrawClient(int32 token) argument
636 _DrawClientPolygon(int32 token, BPoint polygon[4]) argument
[all...]
/haiku-fatelf/src/bin/bc/bc/
H A Dsbc.y46 %token <i_value> ENDOFLINE AND OR NOT
47 %token <s_value> STRING NAME NUMBER
49 %token <c_value> ASSIGN_OP
51 %token <s_value> REL_OP
53 %token <c_value> INCR_DECR
55 %token <i_value> Define Break Quit Length
57 %token <i_value> Return For If While Sqrt Else
59 %token <i_value> Scale Ibase Obase Auto Read
61 %token <i_value> Warranty, Halt, Last, Continue, Print, Limits
H A Dbc.y66 %token <i_value> ENDOFLINE AND OR NOT
67 %token <s_value> STRING NAME NUMBER
70 %token <c_value> ASSIGN_OP
72 %token <s_value> REL_OP
74 %token <c_value> INCR_DECR
76 %token <i_value> Define Break Quit Length
78 %token <i_value> Return For If While Sqrt Else
80 %token <i_value> Scale Ibase Obase Auto Read
82 %token <i_value> Warranty, Halt, Last, Continue, Print, Limits
84 %token <i_valu
[all...]
/haiku-fatelf/src/kits/app/
H A DMessageRunner.cpp147 status_t error = request.AddInt32("token", fToken);
228 error = request.AddInt32("token", fToken);
279 int32 token = _RegisterRunner(target, message, interval, count, true, local
281 return token >= B_OK ? B_OK : token;
302 int32 token = _RegisterRunner(target, message, interval, count, true, replyTo); local
303 return token >= B_OK ? B_OK : token;
368 \return The token the message runner is registered with, or the error code
399 int32 token; local
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Df-exp.y165 %token <typed_val> INT
166 %token <dval> FLOAT
176 %token <sval> STRING_LITERAL
177 %token <lval> BOOLEAN_LITERAL
178 %token <ssym> NAME
179 %token <tsym> TYPENAME
189 %token <ssym> NAME_OR_INT
191 %token SIZEOF
192 %token ERROR
196 %token INT_KEYWOR
[all...]
/haiku-fatelf/headers/os/support/
H A DArchivable.h96 inline status_t GetObject(int32 token, T*& object);
99 status_t GetObject(int32 token, ownership_policy owning,
120 inline status_t EnsureUnarchived(int32 token);
122 bool IsInstantiated(int32 token);
207 BUnarchiver::GetObject<BArchivable>(int32 token,
213 BUnarchiver::GetObject(int32 token, ownership_policy owning, T*& object) argument
218 status_t err = GetObject(token, owning, interim);
235 BUnarchiver::GetObject(int32 token, T*& object) argument
237 return GetObject<T>(token, B_ASSUME_OWNERSHIP, object);
267 BUnarchiver::EnsureUnarchived(int32 token) argument
[all...]
/haiku-fatelf/src/system/libroot/posix/
H A Duser_group_common.cpp89 char* token = fString; local
96 return token;
101 char* token = NextToken(separator); local
102 if (token == NULL)
106 while (*token != '\0' && isspace(*token))
107 token++;
110 char* end = token + strlen(token);
111 while (end != token
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/packagefs/
H A DQuery.h29 uint32 flags, port_id port, uint32 token,
49 port_id port, uint32 token);
/haiku-fatelf/src/bin/network/ftp/
H A Druserpass.c48 static int token(void);
98 while ((t = token())) switch(t) {
106 if (token() != ID)
130 while ((t = token()) && t != MACH && t != DEFAULT) switch(t) {
133 if (token()) {
150 if (token() && *apass == NULL)
160 if (token() && *aacct == NULL)
250 token(void) function
/haiku-fatelf/src/servers/app/drawing/html5/
H A DHTML5HWInterface.cpp38 uint32 token; member in struct:callback_info
228 HTML5HWInterface::AddCallback(uint32 token, CallbackFunction callback, argument
232 int32 index = fCallbacks.BinarySearchIndexByKey(token, &_CallbackCompare);
240 info->token = token;
250 HTML5HWInterface::RemoveCallback(uint32 token) argument
253 int32 index = fCallbacks.BinarySearchIndexByKey(token, &_CallbackCompare);
263 HTML5HWInterface::_FindCallback(uint32 token) argument
266 return fCallbacks.BinarySearchByKey(token, &_CallbackCompare);
274 if (info->token
322 uint32 token; local
[all...]
H A DHTML5HWInterface.h87 status_t AddCallback(uint32 token,
90 bool RemoveCallback(uint32 token);
95 callback_info* _FindCallback(uint32 token);
/haiku-fatelf/src/servers/app/drawing/remote/
H A DRemoteHWInterface.cpp31 uint32 token; member in struct:callback_info
191 RemoteHWInterface::AddCallback(uint32 token, CallbackFunction callback, argument
195 int32 index = fCallbacks.BinarySearchIndexByKey(token, &_CallbackCompare);
203 info->token = token;
213 RemoteHWInterface::RemoveCallback(uint32 token) argument
216 int32 index = fCallbacks.BinarySearchIndexByKey(token, &_CallbackCompare);
226 RemoteHWInterface::_FindCallback(uint32 token) argument
229 return fCallbacks.BinarySearchByKey(token, &_CallbackCompare);
237 if (info->token
285 uint32 token; local
[all...]
H A DRemoteHWInterface.h84 status_t AddCallback(uint32 token,
87 bool RemoveCallback(uint32 token);
90 callback_info* _FindCallback(uint32 token);
/haiku-fatelf/src/tools/stubgen/
H A Dlexer.l352 * the zero token to report end-of-file.
445 int token;
451 token = yylex();
453 /* fprintf(stderr, "INLIN: read token %c\n", token); */
454 if (token > 0) {
456 switch (token) {
465 unput(token);
492 int token;
499 token
[all...]
/haiku-fatelf/src/tools/gensyscalls/
H A Dgensyscallinfos.cpp146 throw Exception("GetCurrentToken(): No current token!");
176 string token = GetCurrentToken(); local
177 if (expectedToken != token) {
178 throw ParseException(string("Unexpected token `") + token
191 string token = GetCurrentToken(); local
192 return (expectedToken == token);
207 throw Exception("GetCurrentToken(): No current token!");
211 void PutToken(string token) argument
217 fTokens.push_front(token);
461 string token = tokenizer.GetCurrentToken(); local
494 string token = tokenizer.GetCurrentToken(); local
[all...]
/haiku-fatelf/src/bin/bash/
H A Dalias.c292 /* If this is 1, we are checking the next token read for alias expansion
399 alias_expand that the next token is the first word in a command. */
411 /* Characters that may appear in a token. Basically, anything except white
412 space and a token separator. */
426 /* From here to next separator character is a token. */
438 have. The presence of the quotes in the token serves then to
450 quoted portion of the token has been scanned. */
463 char *line, *token; local
469 token = (char *)xmalloc (line_len);
483 token[
[all...]
/haiku-fatelf/3rdparty/mmu_man/irc/Haiku/
H A Dgen_err_list.py52 token = m.group("expr") variable
53 if token in errors:
54 value = errors[token]["value"]
55 #print "%s -> %s = %s" % (define, token, value)
/haiku-fatelf/headers/build/os/app/
H A DMessenger.h41 void _SetTo(team_id team, port_id port, int32 token);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/authentication_server/
H A DAuthenticationServer.h28 status_t _SendRequestReply(port_id port, int32 token,
/haiku-fatelf/src/servers/app/
H A DServerApp.h83 ServerBitmap* GetBitmap(int32 token) const;
87 ServerPicture* GetPicture(int32 token) const;
112 ServerBitmap* _FindBitmap(int32 token) const;
114 ServerPicture* _FindPicture(int32 token) const;
128 // (port + token)
/haiku-fatelf/src/servers/registrar/
H A DRosterAppInfo.cpp21 token(0),
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/authentication_server/
H A DAuthenticationServer.h28 status_t _SendRequestReply(port_id port, int32 token,
/haiku-fatelf/headers/os/package/hpkg/
H A DPackageEntry.h41 void SetUserToken(void* token) argument
42 { fUserToken = token; }

Completed in 124 milliseconds

1234567891011>>