| | 46 | | static void perl_dcc_fill_hash(HV *hv, DCC_REC *dcc) | | | 47 | | { | | | 48 | | hv_store(hv, "type", 4, new_pv(dcc_type2str(dcc->type)), 0);
| /usr/lib/perl5/5.10.0/i586-linux-thread-multi/CORE/embed.h | | 2567 | #define hv_common_key_len(a,b,c,d,e,f) Perl_hv_common_key_len(aTHX_ a,b,c,d,e,f) |
|
| true | 49 | | hv_store(hv, "orig_type", 9, new_pv(dcc_type2str(dcc->orig_type)), 0);
| /usr/lib/perl5/5.10.0/i586-linux-thread-multi/CORE/embed.h | | 2567 | #define hv_common_key_len(a,b,c,d,e,f) Perl_hv_common_key_len(aTHX_ a,b,c,d,e,f) |
|
| | 139 | | | | const char *module_find_id_str(const char *module, int uniqid) | | | 140 | | | | { | | | 141 | | | | GHashTable *idlist; | | | 142 | | | | gpointer origkey, id; | | | 143 | | | | const char *ret; | | | 144 | | | | | | | 145 | | | | g_return_val_if_fail(module != NULL, NULL);
| | | 146 | | | | | | | 147 | | | | if (!g_hash_table_lookup_extended(uniqstrids, GINT_TO_POINTER(uniqid),
| | | 148 | | | | &origkey, &id)) | | true | 149 | | | | return NULL;
| | | 150 | | | | | | | 151 | | | | | | | 152 | | | | idlist = g_hash_table_lookup(stridlookup, module); | | | 153 | | | | if (idlist == NULL)
| | | 154 | | | | return NULL;
| | | 155 | | | | | | | 156 | | | | ret = id; | | | 157 | | | | if (!g_hash_table_lookup_extended(idlist, id, &origkey, &id) || | | | 158 | | | | GPOINTER_TO_INT(id) != uniqid)
| | | 159 | | | | ret = NULL;
| | | 160 | | | | | | | 161 | | | | return ret; | | module_find_id_str$return <= 4095 | 162 | | | | } | Problem | | module_find_id_str$return <= 4095 |
|
|