Home
last modified time | relevance | path

Searched refs:item_cf (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Mac/Modules/cf/
Dpycfbridge.c36 CFTypeRef item_cf; in PyCF_CF2Python_sequence() local
43 item_cf = CFArrayGetValueAtIndex(src, i); in PyCF_CF2Python_sequence()
44 if (item_cf == NULL ) goto err; in PyCF_CF2Python_sequence()
45 item_py = PyCF_CF2Python(item_cf); in PyCF_CF2Python_sequence()
161 CFTypeRef item_cf = NULL; in PyCF_Python2CF_sequence() local
181 if ( !PyCF_Python2CF(item_py, &item_cf)) goto err; in PyCF_Python2CF_sequence()
183 CFArraySetValueAtIndex(rv, i, item_cf); in PyCF_Python2CF_sequence()
184 CFRelease(item_cf); in PyCF_Python2CF_sequence()
185 item_cf = NULL; in PyCF_Python2CF_sequence()
192 if (item_cf) CFRelease(item_cf); in PyCF_Python2CF_sequence()