• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching defs:action

1962 ** called in response to a user action such as pressing "Cancel"
2422 ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
2423 ** specific action but allow the SQL statement to continue to be
2438 ** to the callback is an integer [SQLITE_COPY | action code] that specifies
2439 ** the particular action to be authorized. ^The third through sixth parameters
2441 ** details about the action to be authorized.
2443 ** ^If the action code is [SQLITE_READ]
2450 ** ^If the action code is [SQLITE_DELETE] and the callback returns
2502 ** to signal SQLite whether or not the action is permitted. See the
2515 ** what action is being authorized. These are the integer action codes that
2518 ** These action code values signify what kind of operation is to be
6119 ** action (a reasonable assumption), then using this API may cause the
8837 ** of action to take.
8851 #define OE_Default 99 /* Do whatever the default action is */
9589 ** the parser and down into all the parser action routine in order to
17737 u8 errorAction; /* Recovery action to do in case of an error */
31437 ** PAGER_RESERVED state (see CommitPhaseOne() for the action). It
33902 ** * If the journal file is an in-memory journal file, no action need
57058 ** is really a trigger, not a foreign key action, and the flag set
66911 ** the first of several action routines that get called in response
66920 ** As more of the CREATE TABLE statement is parsed, additional action
67636 ** The table structure that other action routines have been building
68440 pFKey->aAction[0] = (u8)(flags & 0xff); /* ON DELETE action */
68441 pFKey->aAction[1] = (u8)((flags >> 8 ) & 0xff); /* ON UPDATE action */
72558 ** deferred foreign key constraint is violated, no action is taken
72830 ** special action is taken. Otherwise, if the parent row can *not* be
72975 ** Or, if the ON (UPDATE|DELETE) action is RESTRICT,
72981 ** Or, if the ON (UPDATE|DELETE) action is RESTRICT,
73341 /* If there is a RESTRICT action configured for the current operation
73452 ** equivalent to the ON UPDATE or ON DELETE action specified by pFKey.
73453 ** If the action is "NO ACTION" or "RESTRICT", then a NULL pointer is
73476 FKey *pFKey, /* Foreign key to get action for */
73480 int action; /* One of OE_None, OE_Cascade etc. */
73484 action = pFKey->aAction[iAction];
73487 if( action!=OE_None && !pTrigger ){
73551 if( action!=OE_Restrict && (action!=OE_Cascade || pChanges) ){
73553 if( action==OE_Cascade ){
73558 }else if( action==OE_SetDflt ){
73577 if( action==OE_Restrict ){
73636 switch( action ){
73669 ** refer to table pTab. If there is an action associated with the FK
74819 ** then the appropriate action is performed. There are five possible
74844 ** is NULL, the action is the same as ABORT.
74851 ** Which action to take is determined by the overrideError parameter.
74859 ** Except, if there is no possibility of a REPLACE action then
75044 /* Find out what action to take in case there is an indexing conflict */
76919 ** Return a human-readable name for a constraint resolution action.
76922 static const char *actionName(u8 action){
76924 switch( action ){
76930 assert( action==OE_None ); break;
84426 ** not a foreign key action, and (b) the flag to enable recursive triggers
84906 ** action, then we need to open all indices because we might need
90855 /* Next are the tables used to determine what action to take based on the
90858 ** action integer.
90860 ** Suppose the action integer is N. Then the action is determined as
90872 ** N == YYNSTATE+YYNRULE+2 No such action. Denotes unused
90875 ** The action table is constructed as a single large table named yy_action[].
90876 ** Given state S and lookahead X, the action is computed as
90882 ** is equal to YY_SHIFT_USE_DFLT, it means that the action is not in the table
90885 ** The formula above is for computing the action when the lookahead is
90887 ** a reduce action) then the yy_reduce_ofst[] array is used in place of
90900 ** yy_default[] Default action for each state.
91461 ** the information used by the action routines in the grammar.
92072 default: break; /* If no destructor action specified: do nothing */
92142 ** Find the appropriate action for a parser given the terminal
92145 ** If the look-ahead token is YYNOCODE, then check to see if the action is
92146 ** independent of the look-ahead. If it is, return the action, otherwise
92207 ** Find the appropriate action for a parser given the non-terminal
92210 ** If the look-ahead token is YYNOCODE, then check to see if the action is
92211 ** independent of the look-ahead. If it is, return the action, otherwise
92263 ** Perform a shift action.
92650 ** Perform a reduce action and the shift that must immediately
92658 int yyact; /* The next action */
93786 /* If we are not debugging and the reduce action popped at least
93869 ** use by the action routines.
93889 int yyact; /* The parser action. */
97428 ** This action provides a run-time test to see whether or not
97447 ** This action provides a run-time test to see how the ALWAYS and