Lines Matching refs:entry

37 // Initialize device_ext dispatch table entry as follows:
39 // init the entry (given by idx) in the ext dispatch table.
40 // If dev != NULL only initialize the entry in the given dev's dispatch table.
43 // If GDPA returns NULL then don't initialize the dispatch table entry.
85 // Look in the layers list of device extensions, which contain names of entry points. If funcName is present, return true
94 // Iterate over the entry points.
96 for (uint32_t entry = 0; entry < property->entrypoints.count; ++entry) {
97 if (strcmp(property->entrypoints.list[entry], funcName) == 0) {
123 * This function returns generic trampoline code address for unknown entry points.
124 * Presumably, these unknown entry points (as given by funcName) are device extension
126 * A function name array is used to keep a list of unknown entry points and their
129 * For a given entry point string (funcName), if an existing mapping is found the
131 * Otherwise, this unknown entry point has not been seen yet.
134 * If so then a new entry in the function name array is added and that trampoline
135 * address for the new entry is returned.
225 // is used to keep a list of unknown entry points and their
228 // For a given entry point string (funcName), if an existing mapping is
232 // If so then a new entry in the function name array is added.
283 // increment the count so that the subsequent logic includes the newly added entry point when searching for functions
309 // Now if this is being run in the trampoline, search for the first layer attached and query using it to get the first entry