Lines Matching refs:MYOBJ
131 } MYOBJ; typedef
133 static MYOBJ *MYOBJ_new(void) in MYOBJ_new()
136 MYOBJ *obj = OPENSSL_malloc(sizeof(*obj)); in MYOBJ_new()
145 static void MYOBJ_sethello(MYOBJ *obj, char *cp) in MYOBJ_sethello()
152 static char *MYOBJ_gethello(MYOBJ *obj) in MYOBJ_gethello()
157 static void MYOBJ_sethello2(MYOBJ *obj, char *cp) in MYOBJ_sethello2()
167 static char *MYOBJ_gethello2(MYOBJ *obj) in MYOBJ_gethello2()
178 static void MYOBJ_allochello3(MYOBJ *obj, char *cp) in MYOBJ_allochello3()
191 static char *MYOBJ_gethello3(MYOBJ *obj) in MYOBJ_gethello3()
202 static void MYOBJ_free(MYOBJ *obj) in MYOBJ_free()
210 static MYOBJ *MYOBJ_dup(MYOBJ *in) in MYOBJ_dup()
212 MYOBJ *obj = MYOBJ_new(); in MYOBJ_dup()
222 MYOBJ *t1 = NULL, *t2 = NULL, *t3 = NULL; in test_exdata()