Lines Matching refs:rc
75 int rc = symlink(deviceNode, linkName); in CreateSymbolLinks() local
76 if (rc != 0) { in CreateSymbolLinks()
101 int rc = 0; in SetDeviceLable() local
123 rc += Restorecon(buffer); in SetDeviceLable()
127 rc += Restorecon(path); in SetDeviceLable()
128 if (rc != 0) { in SetDeviceLable()
138 int rc = -1; in CreateDeviceNode() local
147 return rc; in CreateDeviceNode()
153 return rc; in CreateDeviceNode()
159 return rc; in CreateDeviceNode()
162 rc = MakeDirRecursive(devicePath, DIRMODE); in CreateDeviceNode()
163 if (rc < 0) { in CreateDeviceNode()
165 return rc; in CreateDeviceNode()
172 rc = mknod(deviceNode, mode, dev); in CreateDeviceNode()
173 if (rc < 0) { in CreateDeviceNode()
176 return rc; in CreateDeviceNode()
186 rc = 0; in CreateDeviceNode()
187 return rc; in CreateDeviceNode()