Lines Matching full:get

36   // Running as root, get all processes  in GetProcesses()
72 // Get the process id for the app (if there is one) in GetProcesses()
76 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_PID_KEY, in GetProcesses()
77 pidCFNumber.get()); in GetProcesses()
80 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_FRONTMOST_KEY, in GetProcesses()
105 if (cf_pid_path.get()) in GetProcesses()
106 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_PATH_KEY, in GetProcesses()
107 cf_pid_path.get()); in GetProcesses()
112 ::CFDictionarySetValue(appInfoDict.get(), in GetProcesses()
113 DTSERVICES_APP_DISPLAY_NAME_KEY, pid_name.get()); in GetProcesses()
117 ::CFArrayAppendValue(plistMutableArray, appInfoDict.get()); in GetProcesses()
139 result = GetProcesses(plistMutableArray.get(), all_users); in ListApplications()
147 CFIndex count = sbsAppIDs.get() ? ::CFArrayGetCount(sbsAppIDs.get()) : 0; in ListApplications()
151 (CFStringRef)::CFArrayGetValueAtIndex(sbsAppIDs.get(), i); in ListApplications()
158 // Get the process id for the app (if there is one) in ListApplications()
164 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_PID_KEY, in ListApplications()
165 pidCFNumber.get()); in ListApplications()
169 if (sbsFrontAppID.get() && displayIdentifier && in ListApplications()
170 (::CFStringCompare(sbsFrontAppID.get(), displayIdentifier, 0) == in ListApplications()
172 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_FRONTMOST_KEY, in ListApplications()
175 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_FRONTMOST_KEY, in ListApplications()
180 if (executablePath.get() != NULL) { in ListApplications()
181 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_PATH_KEY, in ListApplications()
182 executablePath.get()); in ListApplications()
187 if (iconImagePath.get() != NULL) { in ListApplications()
188 ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_ICON_PATH_KEY, in ListApplications()
189 iconImagePath.get()); in ListApplications()
195 if (localizedDisplayName.get() != NULL) { in ListApplications()
196 ::CFDictionarySetValue(appInfoDict.get(), in ListApplications()
198 localizedDisplayName.get()); in ListApplications()
202 ::CFArrayAppendValue(plistMutableArray.get(), appInfoDict.get()); in ListApplications()
208 GetProcesses(plistMutableArray.get(), all_users); in ListApplications()
212 ::CFPropertyListCreateXMLData(alloc, plistMutableArray.get())); in ListApplications()
215 if (plistData.get() != NULL) { in ListApplications()
216 CFIndex size = ::CFDataGetLength(plistData.get()); in ListApplications()
217 const UInt8 *bytes = ::CFDataGetBytePtr(plistData.get()); in ListApplications()