Lines Matching refs:yyscanner
393 #define YY_NEW_FILE yyrestart( yyin , yyscanner )
443 #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
524 void yyrestart ( FILE *input_file , yyscan_t yyscanner );
525 void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner );
526 YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner );
527 void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner );
528 void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner );
529 void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner );
530 void yypop_buffer_state ( yyscan_t yyscanner );
532 static void yyensure_buffer_stack ( yyscan_t yyscanner );
533 static void yy_load_buffer_state ( yyscan_t yyscanner );
534 static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file , yyscan_t yyscanner );
535 #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER , yyscanner)
537 YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner );
538 YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner );
539 YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner );
541 void *yyalloc ( yy_size_t , yyscan_t yyscanner );
542 void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner );
543 void yyfree ( void * , yyscan_t yyscanner );
549 yyensure_buffer_stack (yyscanner); \
551 yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \
558 yyensure_buffer_stack (yyscanner); \
560 yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \
568 #define pcap_wrap(yyscanner) (/*CONSTCOND*/1) argument
576 static yy_state_type yy_get_previous_state ( yyscan_t yyscanner );
577 static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner);
578 static int yy_get_next_buffer ( yyscan_t yyscanner );
579 static void yynoreturn yy_fatal_error ( const char* msg , yyscan_t yyscanner );
3194 static int yy_init_globals ( yyscan_t yyscanner );
3207 int yylex_destroy ( yyscan_t yyscanner );
3209 int yyget_debug ( yyscan_t yyscanner );
3211 void yyset_debug ( int debug_flag , yyscan_t yyscanner );
3213 YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner );
3215 void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner );
3217 FILE *yyget_in ( yyscan_t yyscanner );
3219 void yyset_in ( FILE * _in_str , yyscan_t yyscanner );
3221 FILE *yyget_out ( yyscan_t yyscanner );
3223 void yyset_out ( FILE * _out_str , yyscan_t yyscanner );
3225 int yyget_leng ( yyscan_t yyscanner );
3227 char *yyget_text ( yyscan_t yyscanner );
3229 int yyget_lineno ( yyscan_t yyscanner );
3231 void yyset_lineno ( int _line_number , yyscan_t yyscanner );
3233 int yyget_column ( yyscan_t yyscanner );
3235 void yyset_column ( int _column_no , yyscan_t yyscanner );
3237 YYSTYPE * yyget_lval ( yyscan_t yyscanner );
3239 void yyset_lval ( YYSTYPE * yylval_param , yyscan_t yyscanner );
3247 extern "C" int yywrap ( yyscan_t yyscanner );
3249 extern int yywrap ( yyscan_t yyscanner );
3258 static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner);
3262 static int yy_flex_strlen ( const char * , yyscan_t yyscanner);
3267 static int yyinput ( yyscan_t yyscanner );
3269 static int input ( yyscan_t yyscanner );
3343 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner)
3355 (YYSTYPE * yylval_param , yyscan_t yyscanner);
3358 (YYSTYPE * yylval_param , yyscan_t yyscanner)
3383 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
3405 yyensure_buffer_stack (yyscanner);
3407 yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner);
3410 yy_load_buffer_state( yyscanner );
4447 yy_current_state = yy_get_previous_state( yyscanner );
4458 yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner);
4478 else switch ( yy_get_next_buffer( yyscanner ) )
4484 if ( yywrap( yyscanner ) )
4513 yy_current_state = yy_get_previous_state( yyscanner );
4523 yy_current_state = yy_get_previous_state( yyscanner );
4547 static int yy_get_next_buffer (yyscan_t yyscanner) in yy_get_next_buffer() argument
4549 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_get_next_buffer()
4618 (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); in yy_get_next_buffer()
4650 yyrestart( yyin , yyscanner); in yy_get_next_buffer()
4668 (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size , yyscanner ); in yy_get_next_buffer()
4686 static yy_state_type yy_get_previous_state (yyscan_t yyscanner) in yy_get_previous_state() argument
4690 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_get_previous_state()
4719 static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) in yy_try_NUL_trans() argument
4722 …struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon opti… in yy_try_NUL_trans()
4750 static int yyinput (yyscan_t yyscanner) in yyinput() argument
4752 static int input (yyscan_t yyscanner) in yyinput()
4757 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyinput()
4776 switch ( yy_get_next_buffer( yyscanner ) ) in yyinput()
4790 yyrestart( yyin , yyscanner); in yyinput()
4796 if ( yywrap( yyscanner ) ) in yyinput()
4802 return yyinput(yyscanner); in yyinput()
4804 return input(yyscanner); in yyinput()
4828 void yyrestart (FILE * input_file , yyscan_t yyscanner) in yyrestart() argument
4830 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyrestart()
4833 yyensure_buffer_stack (yyscanner); in yyrestart()
4835 yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); in yyrestart()
4838 yy_init_buffer( YY_CURRENT_BUFFER, input_file , yyscanner); in yyrestart()
4839 yy_load_buffer_state( yyscanner ); in yyrestart()
4846 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) in yy_switch_to_buffer() argument
4848 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_switch_to_buffer()
4855 yyensure_buffer_stack (yyscanner); in yy_switch_to_buffer()
4868 yy_load_buffer_state( yyscanner ); in yy_switch_to_buffer()
4878 static void yy_load_buffer_state (yyscan_t yyscanner) in yy_load_buffer_state() argument
4880 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_load_buffer_state()
4893 YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) in yy_create_buffer() argument
4897 b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); in yy_create_buffer()
4906 b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); in yy_create_buffer()
4912 yy_init_buffer( b, file , yyscanner); in yy_create_buffer()
4921 void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) in yy_delete_buffer() argument
4923 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_delete_buffer()
4932 yyfree( (void *) b->yy_ch_buf , yyscanner ); in yy_delete_buffer()
4934 yyfree( (void *) b , yyscanner ); in yy_delete_buffer()
4941 static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) in yy_init_buffer() argument
4945 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_init_buffer()
4947 yy_flush_buffer( b , yyscanner); in yy_init_buffer()
4970 void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) in yy_flush_buffer() argument
4972 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_flush_buffer()
4991 yy_load_buffer_state( yyscanner ); in yy_flush_buffer()
5000 void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) in yypush_buffer_state() argument
5002 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yypush_buffer_state()
5006 yyensure_buffer_stack(yyscanner); in yypush_buffer_state()
5023 yy_load_buffer_state( yyscanner ); in yypush_buffer_state()
5031 void yypop_buffer_state (yyscan_t yyscanner) in yypop_buffer_state() argument
5033 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yypop_buffer_state()
5037 yy_delete_buffer(YY_CURRENT_BUFFER , yyscanner); in yypop_buffer_state()
5043 yy_load_buffer_state( yyscanner ); in yypop_buffer_state()
5051 static void yyensure_buffer_stack (yyscan_t yyscanner) in yyensure_buffer_stack() argument
5054 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyensure_buffer_stack()
5065 , yyscanner); in yyensure_buffer_stack()
5085 , yyscanner); in yyensure_buffer_stack()
5101 YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) in yy_scan_buffer() argument
5111 b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); in yy_scan_buffer()
5125 yy_switch_to_buffer( b , yyscanner ); in yy_scan_buffer()
5138 YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner) in yy_scan_string() argument
5141 return yy_scan_bytes( yystr, (int) strlen(yystr) , yyscanner); in yy_scan_string()
5151 YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len , yyscan_t yyscanner) in yy_scan_bytes() argument
5160 buf = (char *) yyalloc( n , yyscanner ); in yy_scan_bytes()
5169 b = yy_scan_buffer( buf, n , yyscanner); in yy_scan_bytes()
5185 static void yynoreturn yy_fatal_error (const char* msg , yyscan_t yyscanner) in yy_fatal_error() argument
5187 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_fatal_error()
5215 YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) in yyget_extra() argument
5217 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_extra()
5224 int yyget_lineno (yyscan_t yyscanner) in yyget_lineno() argument
5226 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_lineno()
5237 int yyget_column (yyscan_t yyscanner) in yyget_column() argument
5239 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_column()
5250 FILE *yyget_in (yyscan_t yyscanner) in yyget_in() argument
5252 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_in()
5259 FILE *yyget_out (yyscan_t yyscanner) in yyget_out() argument
5261 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_out()
5268 int yyget_leng (yyscan_t yyscanner) in yyget_leng() argument
5270 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_leng()
5278 char *yyget_text (yyscan_t yyscanner) in yyget_text() argument
5280 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_text()
5288 void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) in yyset_extra() argument
5290 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyset_extra()
5298 void yyset_lineno (int _line_number , yyscan_t yyscanner) in yyset_lineno() argument
5300 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyset_lineno()
5313 void yyset_column (int _column_no , yyscan_t yyscanner) in yyset_column() argument
5315 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyset_column()
5330 void yyset_in (FILE * _in_str , yyscan_t yyscanner) in yyset_in() argument
5332 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyset_in()
5336 void yyset_out (FILE * _out_str , yyscan_t yyscanner) in yyset_out() argument
5338 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyset_out()
5342 int yyget_debug (yyscan_t yyscanner) in yyget_debug() argument
5344 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_debug()
5348 void yyset_debug (int _bdebug , yyscan_t yyscanner) in yyset_debug() argument
5350 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyset_debug()
5356 YYSTYPE * yyget_lval (yyscan_t yyscanner) in yyget_lval() argument
5358 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyget_lval()
5362 void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) in yyset_lval() argument
5364 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyset_lval()
5428 static int yy_init_globals (yyscan_t yyscanner) in yy_init_globals() argument
5430 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_init_globals()
5462 int yylex_destroy (yyscan_t yyscanner) in yylex_destroy() argument
5464 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yylex_destroy()
5468 yy_delete_buffer( YY_CURRENT_BUFFER , yyscanner ); in yylex_destroy()
5470 yypop_buffer_state(yyscanner); in yylex_destroy()
5474 yyfree(yyg->yy_buffer_stack , yyscanner); in yylex_destroy()
5478 yyfree( yyg->yy_start_stack , yyscanner ); in yylex_destroy()
5483 yy_init_globals( yyscanner); in yylex_destroy()
5486 yyfree ( yyscanner , yyscanner ); in yylex_destroy()
5487 yyscanner = NULL; in yylex_destroy()
5496 static void yy_flex_strncpy (char* s1, const char * s2, int n , yyscan_t yyscanner) in yy_flex_strncpy() argument
5498 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yy_flex_strncpy()
5508 static int yy_flex_strlen (const char * s , yyscan_t yyscanner) in yy_flex_strlen() argument
5518 void *yyalloc (yy_size_t size , yyscan_t yyscanner) in yyalloc() argument
5520 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyalloc()
5525 void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) in yyrealloc() argument
5527 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyrealloc()
5540 void yyfree (void * ptr , yyscan_t yyscanner) in yyfree() argument
5542 struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; in yyfree()