HomeSort by relevance Sort by last modified time
    Searched refs:__table (Results 1 - 2 of 2) sorted by null

  /external/u-boot/arch/arm/mach-uniphier/
soc-info.h 27 #define UNIPHIER_DEFINE_SOCDATA_FUNC(__func_name, __table) \
28 static typeof(&__table[0]) __func_name(void) \
34 for (i = 0; i < ARRAY_SIZE(__table); i++) { \
35 if (__table[i].soc_id == soc_id) \
36 return &__table[i]; \
  /external/autotest/scheduler/
scheduler_models.py 160 self.__table = self._table_name
185 sql = 'SELECT %s FROM %s WHERE ID=%%s' % (fields, self.__table)
189 % (self.__table, row_id))
196 self.__table, row, len(row), self._fields, len(self._fields)))
249 table = self.__table
267 query = "UPDATE %s SET %s = %%s WHERE id = %%s" % (self.__table, field)
286 (self.__table, columns, values_str))
296 query = 'DELETE FROM %s WHERE id=%%s' % self.__table
    [all...]

Completed in 170 milliseconds