Home | History | Annotate | Download | only in win

Lines Matching refs:dictionary

49     RetainPtr<CFDictionaryRef> dictionary(AdoptCF, wkCFURLRequestCreateSerializableRepresentation(resourceRequest.cfURLRequest(), CoreIPC::tokenNullTypeRef()));
50 encode(encoder, dictionary.get());
66 RetainPtr<CFDictionaryRef> dictionary;
67 if (!decode(decoder, dictionary))
70 CFURLRequestRef cfURLRequest = wkCFURLRequestCreateFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef());
90 RetainPtr<CFDictionaryRef> dictionary(AdoptCF, wkCFURLResponseCreateSerializableRepresentation(resourceResponse.cfURLResponse(), CoreIPC::tokenNullTypeRef()));
91 encode(encoder, dictionary.get());
107 RetainPtr<CFDictionaryRef> dictionary;
108 if (!decode(decoder, dictionary))
111 CFURLResponseRef cfURLResponse = wkCFURLResponseCreateFromSerializableRepresentation(dictionary.get(), CoreIPC::tokenNullTypeRef());