TypedValue* fg_posix_getgrgid(HPHP::VM::ActRec *ar) { EXCEPTION_GATE_ENTER(); TypedValue rv; long long count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (count == 1LL) { if ((args-0)->m_type == KindOfInt64) { fh_posix_getgrgid((&(rv)), (int)(args[-0].m_data.num)); if (rv.m_type == KindOfUninit) rv.m_type = KindOfNull; frame_free_locals_no_this_inl(ar, 1); memcpy(&ar->m_r, &rv, sizeof(TypedValue)); return &ar->m_r; } else { fg1_posix_getgrgid(&rv, ar, count); frame_free_locals_no_this_inl(ar, 1); memcpy(&ar->m_r, &rv, sizeof(TypedValue)); return &ar->m_r; } } else { throw_wrong_arguments_nr("posix_getgrgid", count, 1, 1, 1); } rv.m_data.num = 0LL; rv._count = 0; rv.m_type = KindOfNull; frame_free_locals_no_this_inl(ar, 1); memcpy(&ar->m_r, &rv, sizeof(TypedValue)); return &ar->m_r; EXCEPTION_GATE_RETURN(&ar->m_r); }
TypedValue * fg1_posix_getgrgid(TypedValue* rv, HPHP::VM::ActRec* ar, long long count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_posix_getgrgid((rv), (int)(args[-0].m_data.num)); if (rv->m_type == KindOfUninit) rv->m_type = KindOfNull; return rv; }
TypedValue* fg_posix_getgrgid(ActRec* ar) { TypedValue rvSpace; TypedValue* rv = &rvSpace; int32_t count = ar->numArgs(); TypedValue* args UNUSED = ((TypedValue*)ar) - 1; if (count == 1) { if ((args - 0)->m_type == KindOfInt64) { fh_posix_getgrgid(rv, (int)(args[-0].m_data.num)); if (rv->m_type == KindOfUninit) rv->m_type = KindOfNull; } else { fg1_posix_getgrgid(rv, ar, count); } } else { throw_wrong_arguments_nr("posix_getgrgid", count, 1, 1, 1); rv->m_data.num = 0LL; rv->m_type = KindOfNull; } frame_free_locals_no_this_inl(ar, 1); memcpy(&ar->m_r, rv, sizeof(TypedValue)); return &ar->m_r; }
void fg1_posix_getgrgid(TypedValue* rv, ActRec* ar, int32_t count) { TypedValue* args UNUSED = ((TypedValue*)ar) - 1; tvCastToInt64InPlace(args-0); fh_posix_getgrgid(rv, (int)(args[-0].m_data.num)); if (rv->m_type == KindOfUninit) rv->m_type = KindOfNull; }