Lines Matching refs:objs
70 struct st_object **objs; member
191 if (soft_token.object.objs[i] == NULL) in object_handle_to_object()
193 if (soft_token.object.objs[i]->object_handle != handle) in object_handle_to_object()
195 *object = soft_token.object.objs[i]; in object_handle_to_object()
306 struct st_object *o, **objs; in add_st_object() local
314 if (soft_token.object.objs == NULL) { in add_st_object()
315 soft_token.object.objs[i] = o; in add_st_object()
320 objs = realloc(soft_token.object.objs, in add_st_object()
321 (soft_token.object.num_objs + 1) * sizeof(soft_token.object.objs[0])); in add_st_object()
322 if (objs == NULL) { in add_st_object()
326 soft_token.object.objs = objs; in add_st_object()
327 soft_token.object.objs[soft_token.object.num_objs++] = o; in add_st_object()
329 soft_token.object.objs[i]->object_handle = in add_st_object()
889 soft_token.object.objs = NULL; in C_Initialize()
1378 if (attributes_match(soft_token.object.objs[i], in C_FindObjects()
1381 *phObject++ = soft_token.object.objs[i]->object_handle; in C_FindObjects()
1530 o = soft_token.object.objs[state->sign_object]; in C_Sign()
1648 o = soft_token.object.objs[state->verify_object]; in C_Verify()