Lines Matching defs:property

46  * property "InterpRegistry" on the root window of the display.
62 * locked when the property was read in. */
63 int modified; /* Non-zero means that the property has
66 unsigned long propLength; /* Length of the property, in bytes. */
67 char *property; /* The contents of the property, or NULL
71 int allocedByX; /* Non-zero means must free property with
117 * even mapped, with one property, "Comm". When a command is sent to
118 * an interpreter, the command is appended to the comm property of the
121 * to the comm property.
198 * Maximum size property that can be read at one time by
218 Window window, Atom property, char *value,
297 * Read the registry property.
305 (unsigned char **) &regPtr->property);
309 regPtr->property = NULL;
313 * The property is improperly formed; delete it.
316 if (regPtr->property != NULL) {
317 XFree(regPtr->property);
319 regPtr->property = NULL;
327 * Xlib placed an extra null byte after the end of the property, just
335 && (regPtr->property[regPtr->propLength-1] != 0)) {
372 for (p = regPtr->property; (p-regPtr->property) < regPtr->propLength; ) {
419 for (p = regPtr->property; (p-regPtr->property) < regPtr->propLength; ) {
438 count = regPtr->propLength - (p - regPtr->property);
487 if (regPtr->property != NULL) {
488 memcpy((VOID *) (newProp + newBytes), (VOID *) regPtr->property,
491 XFree(regPtr->property);
493 ckfree(regPtr->property);
498 regPtr->property = newProp;
535 PropModeReplace, (unsigned char *) regPtr->property,
544 if (regPtr->property != NULL) {
546 XFree(regPtr->property);
548 ckfree(regPtr->property);
588 char *property;
592 property = NULL;
595 * Ignore X errors when reading the property (e.g., the window
605 &length, &bytesAfter, (unsigned char **) &property);
611 * The comm. window exists but the property we're looking for
614 * property; if this is the case, then assume for compatibility's
633 if (Tcl_SplitList((Tcl_Interp *) NULL, property, &argc, &argv)
647 if (property != NULL) {
648 XFree(property);
841 * in the local entry for this application, plus put it in a property
1169 * Read the registry property, then scan through all of its entries.
1174 for (p = regPtr->property; (p-regPtr->property) < regPtr->propLength; ) {
1202 count = regPtr->propLength - (p - regPtr->property);
1261 * Get atoms used as property names.
1280 * event manager when a property changes on the communication
1281 * window. This procedure reads the property and handles
1288 * If there are command requests in the property, they
1289 * are executed. If there are responses in the property,
1291 * "send" commands. The property is deleted.
1315 * Read the comm property and delete it.
1326 * If the property doesn't exist or is improperly formed
1339 * Several commands and results could arrive in the property at
1367 * the end of the property or something that doesn't look
1409 * Initialize the result property, so that we're ready at any
1520 * property or something that doesn't look like an option.
1620 * Append a given property to a given window, but set up
1629 * The given property on the given window is appended to.
1638 AppendPropCarefully(display, window, property, value, length, pendingPtr)
1640 Window window; /* Window whose property is to
1642 Atom property; /* Name of property. */
1643 char *value; /* Characters to append to property. */
1647 * property op. NULL means just
1654 XChangeProperty(display, window, property, XA_STRING, 8,
1817 * False is returned except for property-change events on a
1861 * The TK_APPLICATION property on the comm window is updated.