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