Searched defs:action (Results 1 - 18 of 18) sorted by relevance

/device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
H A Dfiptool.h37 int action; member in struct:image_desc
H A Dfiptool.c149 desc->action = DO_UNSPEC;
153 static void set_image_desc_action(image_desc_t *desc, int action, argument
160 desc->action = action;
346 desc->action = DO_UNPACK;
577 if (desc->action != DO_PACK)
939 if (!unpack_all && desc->action != DO_UNPACK)
1075 if (desc->action != DO_REMOVE)
/device/linaro/bootloader/arm-trusted-firmware/drivers/arm/tzc/
H A Dtzc400.c104 void tzc400_set_action(tzc_action_t action) argument
107 assert(action <= TZC_ACTION_ERR_INT);
112 * - The interrupt action has not been tested.
114 _tzc400_write_action(tzc400.base, action);
H A Dtzc_dmc500.c210 /* Sets the action value for all the DMC instances */
211 void tzc_dmc500_set_action(tzc_action_t action) argument
222 * - The interrupt action has not been tested.
224 _tzc_dmc500_write_action(DMC_INST_BASE_ADDR(dmc_inst), action); local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Drcvs.py48 def action(self): member in class:MyFile
122 code = self.action()
145 code = self.action()
157 self.action() # To update lseen, rseen
184 return self.action() != 'C'
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dbuild.c78 * Build an action node for the syntax diagram
86 buildAction( char *action, int file, int line, int is_predicate ) argument
88 buildAction( action, file, line, is_predicate )
89 char *action;
98 require(action!=NULL, "buildAction: invalid action");
103 a->action = (char *) malloc( strlen(action)+1 );
104 require(a->action!=NULL, "buildAction: cannot alloc space for action\
[all...]
H A Dgeneric.h123 char *action; member in struct:_t
195 char *action; member in struct:_UserAction
H A Dsyn.h84 /* a predicate is defined to be a predicate action and a token tree with
136 char *action; member in struct:_ExceptionHandler
211 char *rname; /* what rule does this action live in? */
212 int file; /* index in FileStr (name of file with action) */
213 int line; /* line number that action occurs on */
216 char *action; member in struct:ActionNode::_anode
217 int is_predicate; /* true if action is a <<...>>? predicate action */
218 int done; /* don't dump if action dumped (used for predicates) */
219 int init_action; /* is this the 1st action o
[all...]
/device/linaro/bootloader/arm-trusted-firmware/include/drivers/arm/
H A Dtzc400.h122 void tzc400_set_action(tzc_action_t action);
140 static inline void tzc_set_action(tzc_action_t action) __deprecated;
168 static inline void tzc_set_action(tzc_action_t action) argument
170 tzc400_set_action(action);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
H A Dfileio.c413 err_mode(char *action) argument
415 PyErr_Format(PyExc_ValueError, "File not open for %s", action);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A D_warnings.c105 PyObject *action; local
127 PyObject *tmp_item, *action, *msg, *cat, *mod, *ln_obj; local
138 /* Python code: action, msg, cat, mod, ln = item */
139 action = PyTuple_GET_ITEM(tmp_item, 0);
154 return PyString_AsString(action);
157 action = get_default_action();
158 if (action != NULL) {
159 return PyString_AsString(action);
295 const char *action; local
349 action
795 create_filter(PyObject *category, const char *action) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
H A Dfileio.c425 err_mode(char *action) argument
427 PyErr_Format(PyExc_ValueError, "File not open for %s", action);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A D_warnings.c105 PyObject *action; local
127 PyObject *tmp_item, *action, *msg, *cat, *mod, *ln_obj; local
138 /* Python code: action, msg, cat, mod, ln = item */
139 action = PyTuple_GET_ITEM(tmp_item, 0);
154 return PyString_AsString(action);
157 action = get_default_action();
158 if (action != NULL) {
159 return PyString_AsString(action);
295 const char *action; local
349 action
794 create_filter(PyObject *category, const char *action) argument
[all...]
/device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables_v2/
H A Dxlat_tables_internal.c287 action_t action = ACTION_NONE; local
301 action = ACTION_WRITE_BLOCK_ENTRY;
312 action = ACTION_RECURSE_INTO_TABLE;
315 action = ACTION_WRITE_BLOCK_ENTRY;
335 action = ACTION_RECURSE_INTO_TABLE;
338 if (action == ACTION_WRITE_BLOCK_ENTRY) {
343 } else if (action == ACTION_RECURSE_INTO_TABLE) {
362 assert(action == ACTION_NONE);
380 * From the given arguments, it decides which action to take when mapping the
558 action_t action local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
H A Dconnection.c234 /* action in (ACTION_RESET, ACTION_FINALIZE) */
235 void pysqlite_do_all_statements(pysqlite_Connection* self, int action, int reset_cursors) argument
246 if (action == ACTION_RESET) {
914 static int _authorizer_callback(void* user_arg, int action, const char* arg1, const char* arg2 , const char* dbname, const char* access_attempt_source) argument
923 ret = PyObject_CallFunction((PyObject*)user_arg, "issss", action, arg1, arg2, dbname, access_attempt_source);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dfileobject.c592 err_mode(char *action) argument
594 PyErr_Format(PyExc_IOError, "File not open for %s", action);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_elementtree.c1764 PyObject* action = self->start_event_obj; local
1767 Py_INCREF(action); PyTuple_SET_ITEM(res, 0, (PyObject*) action);
1858 PyObject* action = self->end_event_obj; local
1862 Py_INCREF(action); PyTuple_SET_ITEM(res, 0, (PyObject*) action);
1879 PyObject* action; local
1888 action = self->start_ns_event_obj;
1892 Py_INCREF(action);
1896 action
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dfileobject.c585 err_mode(char *action) argument
587 PyErr_Format(PyExc_IOError, "File not open for %s", action);

Completed in 221 milliseconds