Searched refs:token (Results 1 - 25 of 325) sorted by relevance

1234567891011>>

/haiku-fatelf/src/libs/bsd/
H A Dstring.cpp15 // find the end of the token
16 char* token = *string; local
17 char* end = token;
21 // terminate the token and update the string pointer
28 return token;
/haiku-fatelf/src/kits/app/
H A DTokenSpace.cpp20 // the default token space - all handlers will go into that one
25 BLocker("token space"),
42 int32 token = fTokenCount; local
45 fTokenMap[token] = tokenInfo;
52 return token;
57 Inserts the specified token into the token space. If that token
63 BTokenSpace::SetToken(int32 token, int16 type, void* object) argument
70 fTokenMap[token]
84 RemoveToken(int32 token) argument
101 CheckToken(int32 token, int16 type) const argument
114 GetToken(int32 token, int16 type, void** _object) const argument
131 SetHandlerTarget(int32 token, BDirectMessageTarget* target) argument
154 AcquireHandlerTarget(int32 token, BDirectMessageTarget** _target) argument
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/gutenprintui2/
H A Dprintrcy.y56 %token <ival> tINT
57 %token <dval> tDOUBLE
58 %token <ival> tDIMENSION
59 %token <sval> tBOOLEAN
60 %token <sval> tSTRING
61 %token <sval> tWORD
62 %token <sval> tGSWORD
64 %token CURRENT_PRINTER
65 %token SHOW_ALL_PAPER_SIZES
66 %token PRINTE
[all...]
/haiku-fatelf/headers/private/app/
H A DTokenSpace.h20 // token types as specified in targets
25 // token types in the token list
42 bool SetToken(int32 token, int16 type, void* object);
44 bool RemoveToken(int32 token);
45 bool CheckToken(int32 token, int16 type) const;
46 status_t GetToken(int32 token, int16 type,
49 status_t SetHandlerTarget(int32 token,
51 status_t AcquireHandlerTarget(int32 token,
H A DMessengerPrivate.h27 void SetTo(team_id team, port_id port, int32 token) argument
28 { fMessenger->_SetTo(team, port, token); }
/haiku-fatelf/src/tests/kits/net/preflet/ServicesAddOn/
H A DServicesAddOn.cpp70 char *token; local
87 token = strtok(linePtr, " \t"); // service name
88 label << token; local
89 token = strtok(NULL, " \t"); // type
90 label << " (" << token << ")"; local
91 token = strtok(NULL, " \t"); // protocol
92 label << " " << token; local
110 char *token; local
128 token = strtok(loc, " ");
129 token
130 label << token; local
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/testpattern/
H A Dtestpatterny.y90 %token <ival> tINT
91 %token <dval> tDOUBLE
92 %token <sval> tSTRING
93 %token <sval> COLOR
95 %token GAMMA
96 %token LEVEL
97 %token STEPS
98 %token INK_LIMIT
99 %token PRINTER
100 %token PARAMETE
[all...]
/haiku-fatelf/src/system/libroot/os/
H A Dsystem_info.c34 __start_watching_system(int32 object, uint32 flags, port_id port, int32 token) argument
36 return _kern_start_watching_system(object, flags, port, token);
41 __stop_watching_system(int32 object, uint32 flags, port_id port, int32 token) argument
43 return _kern_stop_watching_system(object, flags, port, token);
H A Dfs_query.cpp23 uint32 flags, port_id port, int32 token)
31 int fd = _kern_open_query(device, query, strlen(query), flags, port, token);
57 uint32 flags, port_id port, int32 token)
65 return open_query_etc(device, query, flags | B_LIVE_QUERY, port, token);
22 open_query_etc(dev_t device, const char *query, uint32 flags, port_id port, int32 token) argument
56 fs_open_live_query(dev_t device, const char *query, uint32 flags, port_id port, int32 token) argument
/haiku-fatelf/src/kits/shared/
H A DExpressionParser.cpp123 //printf("next token (recycled): '%s'\n", fCurrentToken.string.String());
281 //printf("next token: '%s'\n", fCurrentToken.string.String());
381 Token token = fTokenizer->NextToken(); local
382 if (token.type != TOKEN_END_OF_LINE)
383 throw ParseException("parse error", token.position);
413 Token token = fTokenizer->NextToken(); local
414 if (token.type != TOKEN_END_OF_LINE)
415 throw ParseException("parse error", token.position);
430 Token token = fTokenizer->NextToken(); local
431 if (token
475 Token token = fTokenizer->NextToken(); local
499 Token token = fTokenizer->NextToken(); local
533 Token token = fTokenizer->NextToken(); local
546 Token token = fTokenizer->NextToken(); local
592 _ParseFunction(const Token& token) argument
720 Token token = fTokenizer->NextToken(); local
756 Token token = fTokenizer->NextToken(); local
[all...]
/haiku-fatelf/src/kits/support/
H A DArchivingManagers.cpp64 token(-1),
76 int32 token; member in struct:BArchiveManager::ArchiveInfo
110 _token = it->second.token;
130 info.token = fTokenMap.size() - 1;
141 _token = info.token;
171 pairs[info.token].first = info.archive;
172 pairs[info.token].second = it->first;
211 info.token = 0;
277 BUnarchiveManager::GetArchivableForToken(int32 token, argument
280 if (token >
311 IsInstantiated(int32 token) argument
377 int32 token = NULL_TOKEN; local
392 int32 token = NULL_TOKEN; local
[all...]
/haiku-fatelf/src/tools/stubgen/
H A Dutil.c129 char *token;
134 token = strtok(args, "=");
136 while(token != NULL) {
139 removeTrailingSpaces(token);
140 strcat(new_arglist, token);
141 token = strtok(NULL, ","); /* throw away the constant value */
142 token = strtok(NULL, "="); /* grab args up til the next = sign */
/haiku-fatelf/headers/private/kernel/fs/
H A Dnode_monitor.h36 extern status_t _user_stop_notifying(port_id port, uint32 token);
38 port_id port, uint32 token);
40 uint32 token);
/haiku-fatelf/headers/build/private/app/
H A DMessengerPrivate.h27 void SetTo(team_id team, port_id port, int32 token) argument
28 { fMessenger->_SetTo(team, port, token); }
/haiku-fatelf/headers/private/kernel/
H A Dksystem_info.h29 int32 token);
31 int32 token);
/haiku-fatelf/src/kits/storage/
H A DNodeMonitor.cpp48 int32 token = messengerPrivate.Token(); local
49 return _kern_start_watching(volume, (ino_t)-1, flags, port, token);
92 int32 token = messengerPrivate.Token(); local
99 return _kern_stop_watching(node->device, node->node, port, token);
106 B_WATCH_MOUNT, port, token);
119 token);
171 int32 token = messengerPrivate.Token(); local
173 return _kern_stop_notifying(port, token);
/haiku-fatelf/headers/private/net/
H A Dnet_notifications.h33 uint32 token; member in struct:net_notifications_control
/haiku-fatelf/src/bin/gdb/gdb/mi/
H A Dmi-parse.h36 char *token; member in struct:mi_parse
/haiku-fatelf/src/servers/registrar/
H A DRosterAppInfo.h19 uint32 token; member in struct:RosterAppInfo
20 // token is meaningful only if state is APP_STATE_PRE_REGISTERED and
H A DMessageDeliverer.h20 virtual bool Next(port_id &port, int32 &token) = 0;
32 virtual bool Next(port_id &port, int32 &token);
45 SingleMessagingTargetSet(port_id port, int32 token);
49 virtual bool Next(port_id &port, int32 &token);
88 status_t _SendMessage(Message *message, port_id portID, int32 token);
/haiku-fatelf/src/bin/network/wget/src/
H A Dcss-url.c102 Given a detected URI token, get only the URI specified within.
155 int token; local
170 while((token = yylex()) != CSSEOF)
172 /*DEBUGP (("%s ", token_names[token]));*/
176 if(token == IMPORT_SYM)
180 } while((token = yylex()) == S);
182 /*DEBUGP (("%s ", token_names[token]));*/
184 if (token == STRING || token == URI)
190 if (token
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/include/libxml/
H A Dxmlautomata.h59 const xmlChar *token,
65 const xmlChar *token,
72 const xmlChar *token,
80 const xmlChar *token,
88 const xmlChar *token,
97 const xmlChar *token,
105 const xmlChar *token,
/haiku-fatelf/src/add-ons/kernel/partitioning_systems/vmdk/
H A Dvmdk.cpp125 next_token(char*& line, const char* lineEnd, Token& token) argument
133 token.SetToEnd();
134 return token.type;
141 token.SetToAssign();
142 return token.type;
148 token.SetToString();
164 token.PushChar(*(line++));
167 return token.type;
173 token.SetToString();
176 token
255 Token token; local
[all...]
/haiku-fatelf/src/servers/app/
H A DEventDispatcher.h35 event_listener* FindListener(int32 token, int32* _index = NULL);
36 bool AddListener(int32 token, uint32 eventMask, uint32 options,
40 bool RemoveListener(int32 token);
41 bool RemoveTemporaryListener(int32 token);
75 bool AddListener(EventTarget& target, int32 token,
78 int32 token, uint32 eventMask, uint32 options);
79 void RemoveListener(EventTarget& target, int32 token);
80 void RemoveTemporaryListener(EventTarget& target, int32 token);
118 bool _AddListener(EventTarget& target, int32 token,
/haiku-fatelf/src/system/kernel/debug/
H A Ddebug_parser.cpp191 // We can't reuse the token, since the parsing mode changed.
508 const Token& token = fTokenizer.NextToken(); local
509 if (token.type != TOKEN_END_OF_LINE)
510 parse_exception("parse error", token.position);
524 const Token& token = fTokenizer.NextToken(); local
528 int32 startPosition = token.position;
530 if (token.type == TOKEN_IDENTIFIER) {
533 if (token.type & TOKEN_ASSIGN_FLAG) {
544 } else if (token.type == TOKEN_STAR) {
550 parse_exception("expected command or assignment", token
586 const Token& token = fTokenizer.NextToken(); local
599 const Token& token = fTokenizer.NextToken(); local
783 const Token& token = _EatToken(TOKEN_IDENTIFIER); local
838 const Token& token = fTokenizer.NextToken(); local
900 const Token& token = fTokenizer.NextToken(); local
970 const Token& token = fTokenizer.NextToken(); local
993 Token token = fTokenizer.NextToken(); local
1100 const Token& token = fTokenizer.NextToken(); local
1144 const Token& token = fTokenizer.NextToken(); local
[all...]

Completed in 175 milliseconds

1234567891011>>