/device/google/contexthub/firmware/inc/platform/stm32f4xx/ |
D | i2c.h | 33 enum StmGpioAltFunc func; member 51 #define I2C1_GPIO_SCL_PB6 { .gpioNum = GPIO_PB(6), .func = GPIO_AF_I2C1 } 52 #define I2C1_GPIO_SCL_PB8 { .gpioNum = GPIO_PB(8), .func = GPIO_AF_I2C1 } 53 #define I2C1_GPIO_SDA_PB7 { .gpioNum = GPIO_PB(7), .func = GPIO_AF_I2C1 } 54 #define I2C1_GPIO_SDA_PB9 { .gpioNum = GPIO_PB(9), .func = GPIO_AF_I2C1 } 61 #define I2C2_GPIO_SCL_PB10 { .gpioNum = GPIO_PB(10), .func = GPIO_AF_I2C2_A } 62 #define I2C2_GPIO_SDA_PB3 { .gpioNum = GPIO_PB(3), .func = GPIO_AF_I2C2_B } 63 #define I2C2_GPIO_SDA_PB9 { .gpioNum = GPIO_PB(9), .func = GPIO_AF_I2C2_B } 64 #define I2C2_GPIO_SDA_PB11 { .gpioNum = GPIO_PB(11), .func = GPIO_AF_I2C2_A } 69 #define I2C3_GPIO_SCL_PA8 { .gpioNum = GPIO_PA(8), .func = GPIO_AF_I2C3_A } [all …]
|
/device/google/contexthub/firmware/src/ |
D | osApi.c | 465 [SYSCALL_OS_MAIN_EVTQ_SUBCRIBE] = { .func = osExpApiEvtqSubscribe, }, in osApiExport() 466 [SYSCALL_OS_MAIN_EVTQ_UNSUBCRIBE] = { .func = osExpApiEvtqUnsubscribe, }, in osApiExport() 467 [SYSCALL_OS_MAIN_EVTQ_ENQUEUE] = { .func = osExpApiEvtqEnqueue, }, in osApiExport() 468 [SYSCALL_OS_MAIN_EVTQ_ENQUEUE_PRIVATE] = { .func = osExpApiEvtqEnqueuePrivate, }, in osApiExport() 469 [SYSCALL_OS_MAIN_EVTQ_RETAIN_EVT] = { .func = osExpApiEvtqRetainEvt, }, in osApiExport() 470 [SYSCALL_OS_MAIN_EVTQ_FREE_RETAINED] = { .func = osExpApiEvtqFreeRetained, }, in osApiExport() 477 [SYSCALL_OS_MAIN_LOG_LOGV] = { .func = osExpApiLogLogv, }, in osApiExport() 484 [SYSCALL_OS_MAIN_SENSOR_SIGNAL] = { .func = osExpApiSensorSignal, }, in osApiExport() 485 [SYSCALL_OS_MAIN_SENSOR_REG] = { .func = osExpApiSensorReg, }, in osApiExport() 486 [SYSCALL_OS_MAIN_SENSOR_UNREG] = { .func = osExpApiSensorUnreg, }, in osApiExport() [all …]
|
D | syscall.c | 71 return &tab->entry[idx].func; in syscallFindHandlerLoc() 79 bool syscallAddFunc(uint32_t path, SyscallFunc func) in syscallAddFunc() argument 86 *f = func; in syscallAddFunc()
|
D | sensors.c | 210 #define INVOKE_AS_OWNER_AND_RETURN(func, ...) \ argument 212 if (!func) \ 215 bool done = func(__VA_ARGS__); \
|
D | hostIntf.c | 159 const char *func; member 202 osLog(msg->level, "%s failed with: %d\n", msg->func, msg->reason); in hostIntfPrintErrMsg() 206 …c void hostIntfDeferErrLog(enum LogLevel level, enum hostIntfIntErrReason reason, const char *func) in hostIntfDeferErrLog() argument 214 mIntErrMsg[mIntErrMsgIdx].func = func; in hostIntfDeferErrLog()
|
/device/google/contexthub/firmware/inc/ |
D | syscall.h | 64 SyscallFunc func; member 75 bool syscallAddFunc(uint32_t path, SyscallFunc func);
|
D | isr.h | 37 bool (*func)(struct ChainedIsr *); member 66 handled = curIsr->func(curIsr); in dispatchIsr()
|
/device/google/contexthub/firmware/src/drivers/hall_twopole/ |
D | hall_twopole.c | 232 mTask.sIsr.func = hallSouthIsr; in startTask() 233 mTask.nIsr.func = hallNorthIsr; in startTask()
|
/device/google/contexthub/firmware/src/platform/stm32f4xx/ |
D | bl.c | 380 FlashEraseF func; in blEraseSectors() local 386 func = (FlashEraseF)((uint8_t *)code+1); in blEraseSectors() 395 func(&flash->CR, flash->CR | FLASH_CR_STRT, &flash->SR); in blEraseSectors() 407 FlashWriteF func; in blWriteBytes() local 413 func = (FlashWriteF)((uint8_t *)code+1); in blWriteBytes() 422 func(&dst[i], src[i], &flash->SR); in blWriteBytes()
|
D | spi.c | 118 …ne struct Gpio *stmSpiGpioInit(uint32_t gpioNum, enum StmGpioSpeed speed, enum StmGpioAltFunc func) in stmSpiGpioInit() argument 123 gpioConfigAlt(gpio, speed, GPIO_PULL_NONE, GPIO_OUT_PUSH_PULL, func); in stmSpiGpioInit() 478 isr->func = stmSpiExtiIsr; in stmSpiSlaveSetCsInterrupt()
|
D | platform.c | 308 mShWakeupIsr.func = platWakeupIsr; in platInitialize()
|
D | i2c.c | 765 cfg->func); in stmI2cGpioInit()
|
/device/generic/goldfish/opengl/tests/gles_android_wrapper/ |
D | gles.cpp | 56 void glAlphaFunc(GLenum func, GLclampf ref) in glAlphaFunc() argument 58 getDispatch()->glAlphaFunc(func, ref); in glAlphaFunc() 251 void glAlphaFuncx(GLenum func, GLclampx ref) in glAlphaFuncx() argument 253 getDispatch()->glAlphaFuncx(func, ref); in glAlphaFuncx() 366 void glDepthFunc(GLenum func) in glDepthFunc() argument 368 getDispatch()->glDepthFunc(func); in glDepthFunc() 691 void glStencilFunc(GLenum func, GLint ref, GLuint mask) in glStencilFunc() argument 693 getDispatch()->glStencilFunc(func, ref, mask); in glStencilFunc() 846 void glAlphaFuncxOES(GLenum func, GLclampx ref) in glAlphaFuncxOES() argument 848 getDispatch()->glAlphaFuncxOES(func, ref); in glAlphaFuncxOES()
|
/device/google/contexthub/firmware/src/drivers/vsync/ |
D | vsync.c | 165 mTask.isr.func = vsyncIsr; in startTask()
|
/device/generic/goldfish/opengl/system/GLESv1_enc/ |
D | gl_entry.cpp | 9 void glAlphaFunc(GLenum func, GLclampf ref); 48 void glAlphaFuncx(GLenum func, GLclampx ref); 70 void glDepthFunc(GLenum func); 135 void glStencilFunc(GLenum func, GLint ref, GLuint mask); 184 void glAlphaFuncxOES(GLenum func, GLclampx ref); 309 void glAlphaFunc(GLenum func, GLclampf ref) in glAlphaFunc() argument 312 ctx->glAlphaFunc(ctx, func, ref); in glAlphaFunc() 543 void glAlphaFuncx(GLenum func, GLclampx ref) in glAlphaFuncx() argument 546 ctx->glAlphaFuncx(ctx, func, ref); in glAlphaFuncx() 677 void glDepthFunc(GLenum func) in glDepthFunc() argument [all …]
|
D | gl_enc.cpp | 21 void glAlphaFunc_enc(void *self , GLenum func, GLclampf ref) in glAlphaFunc_enc() argument 39 memcpy(ptr, &func, 4); ptr += 4; in glAlphaFunc_enc() 1147 void glAlphaFuncx_enc(void *self , GLenum func, GLclampx ref) in glAlphaFuncx_enc() argument 1165 memcpy(ptr, &func, 4); ptr += 4; in glAlphaFuncx_enc() 1737 void glDepthFunc_enc(void *self , GLenum func) in glDepthFunc_enc() argument 1755 memcpy(ptr, &func, 4); ptr += 4; in glDepthFunc_enc() 3539 void glStencilFunc_enc(void *self , GLenum func, GLint ref, GLuint mask) in glStencilFunc_enc() argument 3557 memcpy(ptr, &func, 4); ptr += 4; in glStencilFunc_enc() 4877 void glAlphaFuncxOES_enc(void *self , GLenum func, GLclampx ref) in glAlphaFuncxOES_enc() argument 4895 memcpy(ptr, &func, 4); ptr += 4; in glAlphaFuncxOES_enc()
|
/device/google/contexthub/firmware/src/drivers/hall/ |
D | hall.c | 215 mTask.isr.func = hallIsr; in startTask()
|
/device/generic/goldfish/opengl/system/GLESv2_enc/ |
D | gl2_entry.cpp | 43 void glDepthFunc(GLenum func); 108 void glStencilFunc(GLenum func, GLint ref, GLuint mask); 109 void glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask); 434 void glDepthFunc(GLenum func) in glDepthFunc() argument 437 ctx->glDepthFunc(ctx, func); in glDepthFunc() 828 void glStencilFunc(GLenum func, GLint ref, GLuint mask) in glStencilFunc() argument 831 ctx->glStencilFunc(ctx, func, ref, mask); in glStencilFunc() 834 void glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask) in glStencilFuncSeparate() argument 837 ctx->glStencilFuncSeparate(ctx, face, func, ref, mask); in glStencilFuncSeparate()
|
D | gl2_enc.cpp | 1015 void glDepthFunc_enc(void *self , GLenum func) in glDepthFunc_enc() argument 1033 memcpy(ptr, &func, 4); ptr += 4; in glDepthFunc_enc() 3074 void glStencilFunc_enc(void *self , GLenum func, GLint ref, GLuint mask) in glStencilFunc_enc() argument 3092 memcpy(ptr, &func, 4); ptr += 4; in glStencilFunc_enc() 3101 void glStencilFuncSeparate_enc(void *self , GLenum face, GLenum func, GLint ref, GLuint mask) in glStencilFuncSeparate_enc() argument 3120 memcpy(ptr, &func, 4); ptr += 4; in glStencilFuncSeparate_enc()
|
/device/google/contexthub/firmware/src/drivers/rohm_rpr0521/ |
D | rohm_rpr0521.c | 652 mTask.isr.func = proxIsr; in init_app()
|
/device/generic/goldfish/qemud/ |
D | qemud.c | 409 looper_add( Looper* l, int fd, EventFunc func, void* user ) in looper_add() argument 421 hook->ev_func = func; in looper_add()
|
/device/google/contexthub/firmware/src/drivers/ams_tmd4903/ |
D | ams_tmd4903.c | 847 mTask.isr.func = proxIsr; in init_app()
|
/device/google/contexthub/firmware/src/drivers/bosch_bmi160/ |
D | bosch_bmi160.c | 3013 T(Isr1).func = bmi160Isr1; in startTask() 3015 T(Isr2).func = bmi160Isr2; in startTask()
|